/* Base Styles */
:root {
    --primary-color: #6c2de3;
    --primary-dark: #5a25c4;
    --primary-light: #7f41fa;
    --text-color: #333;
    --light-text: #666;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a1a;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --container-width: 1200px;
    --radius: 4px;
    --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: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5em;
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

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

a:hover {
    color: var(--primary-dark);
}

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

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

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    color: var(--text-color);
}

.highlight {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
}

.primary-btn:hover {
    background-color: var(--primary-dark);
    color: white;
}

.text-btn {
    background-color: transparent;
    color: var(--text-color);
    text-decoration: underline;
}

.text-btn:hover {
    color: var(--primary-color);
}

.full-width {
    width: 100%;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 15px;
    display: none;
    border-radius: 8px 8px 0 0;
}

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

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

.cookie-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.cookie-content p {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.cookie-buttons .primary-btn {
    width: 100%;
    max-width: 300px;
}

.cookie-buttons .text-btn {
    padding: 10px;
}

/* Header */
header {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo a {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
}

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

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
}

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

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

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background-color: var(--dark-bg);
    background-image: url('./img/1.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: white;
    padding: 100px 0;
    position: relative;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1rem;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

/* Approach Section */
.approach {
    background-color: var(--light-bg);
    border-radius: 10px;
    margin: 0 auto;
    padding: 40px;
    max-width: 1100px;
}

.approach-content {
    text-align: center;
}

.approach-content p {
    margin-bottom: 25px;
}

.approach-list {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.approach-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.approach-list li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 20px;
    background-color: white;
}

.service-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-color);
    font-weight: 700;
}

.service-content p {
    color: var(--light-text);
    font-size: 0.95rem;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.choose-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.choose-us-item {
    background-color: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    height: 100%;
}

.choose-us-item h3 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.choose-us-item p {
    color: var(--light-text);
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: white;
}

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

.testimonial-quote {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 500;
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 30px;
}

.testimonial-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-images img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

/* Contact Section */
.contact {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: center;
}

.contact-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-text p {
    margin-bottom: 20px;
    color: var(--light-text);
}

.contact-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form-container {
    background-color: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(108, 45, 227, 0.2);
}

/* Thank You Page */
.thank-you {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    text-align: center;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.thank-you-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* Policy Pages */
.policy-section {
    padding: 60px 0;
}

.policy-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h2 {
    color: var(--text-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.policy-content p,
.policy-content ul {
    margin-bottom: 20px;
    color: var(--light-text);
}

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

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

/* Footer */
footer {
    background-color: white;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
}

.footer-links {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-contact {
    margin-bottom: 15px;
}

.footer-contact p {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 5px;
}

.footer-copyright p {
    font-size: 0.9rem;
    color: var(--light-text);
}

/* Responsive Design */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .choose-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .burger {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        right: 0;
        top: 70px;
        background-color: white;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease-in;
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .choose-us-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .testimonial-images {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .approach {
        padding: 30px 20px;
    }
    
    .testimonial-quote {
        font-size: 1rem;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .policy-title {
        font-size: 2rem;
    }
}