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

body {
    font-family: 'Unbounded', sans-serif;
    line-height: 1.5;
    font-size: 20px;
    color: rgba(79, 79, 79, 1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(241, 244, 249, 1);
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: block;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content h2 {
    
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.cookie-content p {
    
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept {
    background: #ff6b47;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-accept:hover {
    background: #e55a3f;
}

.btn-decline {
    background: transparent;
    color: #ff6b47;
    border: 2px solid #ff6b47;
    padding: 10px 22px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-decline:hover {
    background: #ff6b47;
    color: white;
}

h2,
h1 {
  color: rgba(22, 20, 81, 1);
}

/* Header Styles */
.header {
    background: rgba(22, 20, 81, 1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: top 0.3s ease;
}


.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ff6b47;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
main {
    margin-top: 60px;
}

/* Hero Section */
.hero-section {
    padding: 4rem 0;
    background: rgba(241, 244, 249, 1);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.hero-text p {
    
    font-size: 1rem;
    line-height: 1.7;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    background: white;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.services-text h2 {
    font-size: 2.2rem;
    
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.services-text p {
    
    font-size: 1rem;
    line-height: 1.7;
}

.services-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

/* Blog Section */
.blog-section {
    padding: 4rem 0;
    background: rgba(241, 244, 249, 1);
}

.blog-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.blog-text h2 {
    font-size: 2.2rem;
    
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.blog-text p {
    
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn-secondary {
    display: inline-block;
    background: #ff6b47;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn-secondary:hover {
    background: #e55a3f;
}

.blog-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

/* Community Section */
.community-section {
    padding: 4rem 0;
    background: white;
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.community-text h2 {
    font-size: 2.2rem;
    
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.community-text p {
    
    font-size: 1rem;
    line-height: 1.7;
}

.community-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: rgba(241, 244, 249, 1);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

textarea {
  resize: none;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.contact-info p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 12px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b47;
}

.btn-primary {
    background: #ff6b47;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.btn-primary:hover {
    background: #e55a3f;
}

/* Footer */
.footer {
    background: rgba(34, 34, 34, 1);
    color: white;
    padding: 2rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-brand a {
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 1px;
    color: #fff;
    text-decoration: unset;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b47;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: inline-block;
    width: 24px;
    height: 24px;
}

textarea,
input,
button {
  font-family: "Unbounded";
}

.footer-social img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.footer-social a:hover img {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(347deg);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #2d3e50;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Thank You Page Styles */
.thank-you-section {
    padding: 6rem 0;
    display: flex;
    align-items: center;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-icon img {
    width: 80px;
    height: 80px;
    filter: sepia(1) saturate(5) hue-rotate(95deg) brightness(1.2);
}

.thank-you-content h1 {
    font-size: 2.5rem;
    
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.thank-you-content p {
    
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.thank-you-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.thank-you-buttons a {
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-content h2 {
        font-size: 1.5rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        width: 100%;
        background: rgba(22, 20, 81, 1);
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-content,
    .services-content,
    .blog-content,
    .community-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text h1,
    .services-text h2,
    .blog-text h2,
    .community-text h2,
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .thank-you-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .thank-you-buttons a {
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section,
    .services-section,
    .blog-section,
    .community-section,
    .contact-section {
        padding: 3rem 0;
    }
    
    .hero-text h1,
    .services-text h2,
    .blog-text h2,
    .community-text h2,
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Additional utility classes */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 1 auto;
}

.policy {
  margin-top: 60px;
  padding-top: 60px;
  padding-bottom: 80px;
}

.policy-content li {
  list-style-position: inside;
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.policy h1 {
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 36px;
  line-height: 100%;
}