/* Base Styles */
:root {
    --dark-purple: #2E003E;
    --teal: #3DDAD7;
    --lime-green: #A4E044;
    --coral: #FF6F61;
    --white: #FFFFFF;
    --graphite: #333333;
    --yellow: #FFD23F;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--dark-purple);
    color: var(--white);
    line-height: 1.6;
}

section[id] {
    scroll-margin-top: 40px;
}

div {
    word-break: break-word;
    overflow-wrap: break-word;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    color: var(--white);
}

a {
    text-decoration: none;
    color: var(--teal);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--lime-green);
}

p {
    margin-bottom: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
}

.btn-primary {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--yellow);
    color: var(--graphite);
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--lime-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: var(--graphite);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    display: inline-block;
    font-size: 2.5rem;
    padding-bottom: 10px;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 50%;
    height: 4px;
    background-color: var(--teal);
    margin: 10px auto 0;
}

section {
    padding: 5rem 0;
}

/* Header Styles */
header {
    background-color: rgba(46, 0, 62, 0.95);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--white);
    text-transform: lowercase;
    z-index: 1001;
}

/* Menu checkbox and toggle styles */
.menu-checkbox {
    display: none;
}

.menu-toggle-label {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--white);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger:before,
.hamburger:after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--white);
    position: absolute;
    transition: all 0.3s ease;
}

.hamburger:before {
    top: -8px;
}

.hamburger:after {
    top: 8px;
}

.menu-checkbox:checked ~ .menu-toggle-label .hamburger {
    background-color: transparent;
}

.menu-checkbox:checked ~ .menu-toggle-label .hamburger:before {
    transform: rotate(45deg);
    top: 0;
}

.menu-checkbox:checked ~ .menu-toggle-label .hamburger:after {
    transform: rotate(-45deg);
    top: 0;
}

nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 20px;
}

nav ul li a {
    color: var(--white);
    font-weight: 500;
}

nav ul li a:hover {
    color: var(--lime-green);
}

/* Hero Section */
.hero {
    background-image: url('./img/OviTU.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(46, 0, 62, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* About Section */
.about {
    background-color: var(--dark-purple);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

/* Services Section */
.services {
    background-color: rgba(255, 111, 97, 0.1);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.service-card {
    background-color: var(--dark-purple);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    margin-bottom: 1rem;
    color: var(--teal);
}

/* Benefits Section */
.benefits {
    background-color: var(--dark-purple);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.benefit-item {
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    background-color: rgba(61, 218, 215, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background-color: rgba(61, 218, 215, 0.2);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background-color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Testimonials Section */
.testimonials {
    background-color: rgba(164, 224, 68, 0.1);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.testimonial-card {
    background-color: var(--dark-purple);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial-author-info h4 {
    margin-bottom: 0.2rem;
}

.testimonial-author-info p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--teal);
}

/* Form Section */
.form-section {
    background-color: var(--dark-purple);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(61, 218, 215, 0.1);
    padding: 2rem;
    border-radius: 10px;
}

form {
    display: grid;
    grid-gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border-radius: 5px;
    border: none;
    background-color: var(--white);
    font-size: 1rem;
}

.form-group select option {
    background-color: white;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    margin-top: 4px;
}

.checkbox-group label {
    font-size: 0.9rem;
}

.form-submit {
    margin-top: 1rem;
}

/* FAQ Section */
.faq {
    background-color: rgba(255, 111, 97, 0.1);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    background-color: rgba(61, 218, 215, 0.1);
    padding: 1rem;
    cursor: pointer;
    position: relative;
    font-weight: bold;
    display: block;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.faq-answer {
    background-color: rgba(61, 218, 215, 0.05);
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-checkbox {
    display: none;
}

.faq-checkbox:checked ~ .faq-answer {
    max-height: 500px;
    padding: 1rem;
}

.faq-checkbox:checked ~ .faq-question::after {
    content: '-';
}

/* Office Section */
.office {
    background-color: var(--dark-purple);
}

.office-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.office-info {
    text-align: center;
}

.office-map {
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
}

.office-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer Styles */
footer {
    background-color: rgba(46, 0, 62, 0.8);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 2rem;
}

.footer-column h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--teal);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(51, 51, 51, 0.95);
    padding: 1rem;
    display: none;
    z-index: 9999;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin-right: 1rem;
    margin-bottom: 0;
}

#accept-cookies {
    padding: 8px 20px;
    background-color: var(--teal);
    color: var(--dark-purple);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    white-space: nowrap;
}

/* Policy Pages */
.policy-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.policy-content h1 {
    margin-bottom: 2rem;
}

.policy-content h2 {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    color: var(--teal);
}

/* Thank You Page */
.thank-you {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

.thank-you-content {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    margin: 8rem auto 5rem;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .menu-toggle-label {
        display: block;
    }
    
    .header-content {
        flex-wrap: wrap;
    }
    
    nav {
        position: absolute;
        top: -1000px;
        left: 0;
        right: 0;
        background-color: var(--dark-purple);
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        transition: all 0.5s ease;
        opacity: 0;
        width: 100%;
        z-index: 1000;
    }
    
    .menu-checkbox:checked ~ nav {
        top: 100%;
        opacity: 1;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-content {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content p {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .section-title h2 {
        font-size: 2rem;
    }

    nav ul {
        gap: 10px;
    }

    .form-container {
        padding: 1.5rem;
    }

    .policy-container {
        padding: 1.5rem;
    }
}
