/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

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

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.btn-primary {
    background-color: #6a3aef;
    color: white;
    border: none;
    padding: 12px 30px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #5628e0;
}

.btn-secondary {
    background-color: transparent;
    color: #333;
    border: none;
    padding: 12px 30px;
    cursor: pointer;
    font-weight: bold;
    transition: color 0.3s;
}

.btn-secondary:hover {
    color: #6a3aef;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    max-width: 500px;
    padding: 30px;
    border-radius: 4px;
    display: none;
}

.cookie-consent.active {
    display: block;
}

.cookie-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

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

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

.cookie-buttons button {
    width: 100%;
}

/* Header */
header {
    padding: 15px 0;
    background-color: white;
    border-bottom: 1px solid #eee;
}

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

.logo h3 {
    font-size: 18px;
    margin-bottom: 0;
}

.logo span {
    font-weight: normal;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    font-weight: 500;
}

nav a:hover {
    color: #6a3aef;
}

/* Hero Section */
.hero {
    background-image: url('./imgs/1.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

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

/* Our Approach Section */
.approach {
    padding: 80px 0;
}

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

.approach-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.approach-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature {
    background-color: #222;
    color: white;
    padding: 20px;
    text-align: center;
}

.feature h3 {
    margin-bottom: 0;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.services h2 {
    text-align: center;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background-color: white;
    padding: 0 0 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-card img {
    margin-bottom: 15px;
    width: 100%;
}

.service-card h3, .service-card p {
    padding: 0 15px;
}

.service-card h3 {
    font-size: 18px;
}

/* Why Choose Us Section */
.why-us {
    padding: 80px 0;
    background-color: #6a3aef;
    color: white;
}

.why-us h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.why-us-card {
    text-align: center;
    padding: 0 20px;
}

.why-us-card h3 {
    margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
}

.testimonial-card img {
    margin-bottom: 20px;
    width: 100%;
}

.testimonial-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Contact Form Section */
.contact {
    padding: 60px 0;
    background-color: #222;
    color: white;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: none;
    background-color: white;
}

.contact .btn-primary {
    float: right;
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    padding: 40px 0 20px;
    font-size: 14px;
}

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

.footer-info {
    margin-bottom: 20px;
}

.footer-info p {
    margin-bottom: 5px;
}

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

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .approach-grid,
    .why-us-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .approach-features {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .cookie-consent {
        width: 90%;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
}