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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Playfair Display', serif;
    line-height: 1.6;
    color: #333;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Buttons */
.button {
    display: inline-block;
    background-color: #f8d548;
    color: #333;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button:hover {
    background-color: #e6c13a;
    transform: translateY(-2px);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background-color: rgba(51, 51, 51, 0.9);
    color: #fff;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav__link {
    font-weight: 500;
}

.nav__link:hover {
    color: #f8d548;
}

.nav__link--button {
    background-color: #f8d548;
    color: #333;
    padding: 10px 20px;
    border-radius: 5px;
}

.nav__link--button:hover {
    background-color: #e6c13a;
    color: #333;
}

.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: #fff;
}

/* Hero Section */
.hero {
    background-image: url('./assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 150px 0 100px;
    text-align: left;
}

.hero__title {
    font-size: 3rem;
    margin-bottom: 30px;
    max-width: 800px;
}

.hero__text {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
}

/* Stats Section */
.stats {
    background-color: #f8d548;
    padding: 80px 0;
}

.stats__inner {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stats__item {
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.stats__number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stats__description {
    font-size: 1.1rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: #2c2c2c;
    color: #fff;
}

.about__inner {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about__content {
    flex: 1;
}

.about__image {
    flex: 1;
}

.about__text:last-child {
    margin-bottom: 0;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: #333;
    color: #fff;
}

.services__subtitle {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service {
    border-left: 3px solid #f8d548;
    padding-left: 20px;
    padding-bottom: 20px;
}

.service__title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Future Section */
.future {
    padding: 100px 0;
    background-color: #333;
    color: #fff;
}

.future__inner {
    display: flex;
    gap: 50px;
    align-items: center;
}

.future__image {
    flex: 1;
}

.future__content {
    flex: 1;
}

.future__text:last-of-type {
    margin-bottom: 30px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: #2c2c2c;
    color: #fff;
    text-align: center;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial {
    background-color: #333;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.testimonial__image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.testimonial__name {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.testimonial__text {
    font-style: italic;
}

/* Contact Form Section */
.contact {
    padding: 100px 0;
    background-color: #2c2c2c;
    color: #fff;
}

.contact__text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.contact__inner {
    display: flex;
    gap: 50px;
    align-items: center;
}

.contact__image {
    flex: 1;
}

.contact__form-container {
    flex: 1;
}

.contact__form {
    background-color: #333;
    padding: 30px;
    border-radius: 10px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #fff;
    font-family: 'Playfair Display', serif;
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background-color: #222;
    color: #fff;
    padding: 50px 0 20px;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer__logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer__contact p {
    margin-bottom: 10px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links a:hover {
    color: #f8d548;
}

.footer__bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(51, 51, 51, 0.95);
    color: #fff;
    padding: 20px 0;
    z-index: 2000;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-popup__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-popup p {
    margin-bottom: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-popup__buttons {
    display: flex;
    gap: 10px;
}

.button--decline {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.button--decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .about__inner,
    .future__inner,
    .contact__inner {
        flex-direction: column;
    }
    
    .about__image {
        order: -1;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: rgba(51, 51, 51, 0.95);
        padding: 20px;
        transform: translateY(-150%);
        transition: transform 0.4s ease;
    }
    
    .nav.active {
        transform: translateY(0);
    }
    
    .nav__list {
        flex-direction: column;
        gap: 15px;
    }
    
    .burger {
        display: block;
    }
    
    .cookie-popup__inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero__title {
        font-size: 2.5rem;
    }
    
    .stats__inner {
        flex-direction: column;
    }
    
    .footer__top {
        flex-direction: column;
        text-align: center;
    }
    
    .footer__links {
        align-items: center;
    }
}

.thank-section {
    padding: 100px 0;
    text-align: center;
    padding-top: 200px;
}

.main-section {
    padding: 100px 0;
    padding-top: 200px;

}