/* Global Styles */
:root {
    --primary-color: #4AAEAE;
    --secondary-color: #ff5555;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --dark-gray: #333;
    --white: #fff;
    --max-width: 1200px;
    --border-radius: 4px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background-color: #3a8a8a;
}

/* Header Styles */
.top-bar {
    background-color: var(--dark-gray);
    padding: 8px 0;
}

.home-link {
    color: var(--white);
    margin-left: 20px;
    font-size: 14px;
}

.main-nav {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-color);
}

.logo-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: var(--text-color);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.hero h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-text {
    max-width: 800px;
    margin-bottom: 30px;
}

/* Features Section */
.features {
    padding: 60px 0;
}

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

.feature-card {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Team Section */
.team {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.team h2, .about-us h2, .services h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.team-member {
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.member-image {
    width: 120px;
    height: 120px;
    background-image: url(./img/1.png);
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.team-member h3 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.team-member:nth-of-type(2) .member-image {
    background-image: url(./img/2.png);
}

.team-member:nth-of-type(3) .member-image {
    background-image: url(./img/3.png);
}

.team-member:nth-of-type(4) .member-image {
    background-image: url(./img/4.png);
}

.team-member:nth-of-type(5) .member-image {
    background-image: url(./img/5.png);
}

/* About Section */
.about-us {
    padding: 60px 0;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.about-image {
    flex: 1;
    min-width: 300px;
    height: 250px;
    background-image: url(./img/6.png);
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
}

.about-text {
    flex: 2;
    min-width: 300px;
}

.about-text h2 {
    text-align: left;
}

.about-text p {
    margin-bottom: 20px;
}

/* Services Section */
.services {
    padding: 60px 0;
    background-color: var(--light-gray);
}

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

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Contact Section */
.contact {
    padding: 60px 0;
}

.contact h2 {
    text-align: center;
    margin-bottom: 30px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
}

/* Footer */
footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 40px 0 20px;
}

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

.footer-links {
    display: flex;
}

.footer-links li {
    margin-left: 20px;
}

.footer-links a {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-links a {
    color: var(--white);
    margin-left: 20px;
}

/* Thank You Page */
.thank-you {
    padding: 80px 0;
    text-align: center;
}

.thank-you h1 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
}

.thank-you-content p {
    margin-bottom: 20px;
}

.thank-you-content .btn {
    margin-top: 20px;
}

/* Privacy Policy & Terms Pages */
.privacy-policy, .terms {
    padding: 60px 0;
}

.privacy-policy h1, .terms h1 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.policy-content h2, .terms-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.policy-content h3, .terms-content h3 {
    font-size: 20px;
    margin: 20px 0 10px;
    color: var(--primary-color);
}

.policy-content p, .terms-content p,
.policy-content ul, .terms-content ul {
    margin-bottom: 20px;
}

.policy-content ul, .terms-content ul {
    padding-left: 20px;
}

.policy-content li, .terms-content li {
    list-style-type: disc;
    margin-bottom: 10px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 15px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 1000;
}

.cookie-banner.visible {
    display: block;
}

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

.cookie-banner p {
    margin-right: 20px;
    margin-bottom: 10px;
    flex: 1;
    min-width: 280px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        width: 100%;
    }
    
    .footer-top, .footer-bottom {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links, .legal-links {
        margin-top: 20px;
        justify-content: center;
    }
    
    .footer-links li:first-child, .legal-links a:first-child {
        margin-left: 0;
    }
    
    .cookie-banner .container {
        flex-direction: column;
    }
    
    .cookie-banner .btn {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .feature-grid, .team-grid, .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1, .thank-you h1 {
        font-size: 28px;
    }
}