/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    line-height: 1.6;
    color: #333;
}

/* Header */
header {
    background: #222;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

header .logo {
    font-size: 1.8em;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Main */
main {
    padding: 20px;
    min-height: 80vh;
}

/* Footer */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 10px;
}

/* Social Icons */
.social-icons {
    margin-bottom: 10px;
}

.social-icons a {
    margin: 0 8px;
    display: inline-block;
}

.social-icons img {
    width: 30px;
    height: 30px;
    transition: transform 0.2s;
}

.social-icons img:hover {
    transform: scale(1.2);
}

/* Form */
form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form input[type="submit"] {
    background-color: #222;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form input[type="submit"]:hover {
    background-color: #444;
}

/* Footer Link */
footer p a {
    color: #00aaff;
    text-decoration: none;
}

footer p a:hover {
    text-decoration: underline;
}

/* Responsive */
/* Tablet */
@media (max-width: 1024px) {
    header {
        flex-direction: column;
        align-items: center;
    }

    nav ul {
        justify-content: center;
    }

    main {
        padding: 15px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    header .logo {
        font-size: 1.5em;
    }

    main {
        padding: 15px;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    header .logo {
        font-size: 1.3em;
    }

    nav ul {
        gap: 8px;
    }

    form input[type="submit"] {
        width: 100%;
    }
}

header .logo img {
    height: 60px;
    width: auto;
}

@media (max-width: 480px) {
    header .logo img {
        height: 50px;
    }
}
footer p {
    color: #fff;
    font-size: 0.9em;
}

footer p a {
    color: #00aaff;
    text-decoration: none;
}

footer p a:hover {
    text-decoration: underline;
}

footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 10px 15px;
}
h2 {
    margin-top: 20px;
    color: #222;
}

hr {
    border: none;
    border-top: 1px solid #ccc;
}
.about-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.about-page {
    text-align: center;
}

.about-page img {
    margin: 20px auto;
    display: block;
}
.home-content {
    text-align: center;
    padding: 20px;
}

.home-image {
    display: inline-block;
    max-width: 600px;
    width: 90%;
    height: auto;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.privacy-page {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.privacy-page h1, .privacy-page h2 {
    color: #222;
    margin-top: 20px;
}

.privacy-page ul {
    text-align: left;
    margin-left: 20px;
    padding-left: 15px;
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #222;
  color: #fff;
  padding: 15px 20px;
  display: none;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  z-index: 1000;
  font-size: 0.95em;
}

.cookie-banner p {
  margin: 0 10px 10px 0;
  flex: 1 1 70%;
}

.cookie-banner a {
  color: #ffd700;
  text-decoration: underline;
}

.cookie-banner button {
  background-color: #ffcc00;
  color: #000;
  border: none;
  padding: 8px 15px;
  margin: 5px;
  cursor: pointer;
  border-radius: 5px;
}

.cookie-banner button:hover {
  background-color: #e6b800;
}
.privacy-page {
  padding: 20px;
  max-width: 900px;
  margin: auto;
  line-height: 1.6;
}
.privacy-page ul {
  padding-left: 20px;
}
.privacy-page {
  padding: 20px;
  max-width: 900px;
  margin: auto;
  line-height: 1.6;
}
.privacy-page {
  padding: 20px;
  max-width: 900px;
  margin: auto;
  line-height: 1.6;
}
.subscribe-link {
  font-weight: bold;
  padding: 10px 15px;
  background-color: #003366;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  margin-left: 20px;
}
.subscribe-link:hover {
  background-color: #0055aa;
}
.social-sidebar .fb-page {
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}
