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

body {
    background-color: #fff;
    color: #333;
    overflow-x: hidden;
}

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

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

/* Header */
header {
    background-color: #111;
    color: white;
    padding: 10px 0;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

/* Hero Section */
.hero {
    display: flex;
    min-height: 70vh;
    background-color: #5D3A8E;
    color: white;
    margin-top: 30px;
}

.hero-content {
    flex: 1;
    padding: 80px 50px;
}

.hero-image {
    flex: 1;
    background-image: url('./imgs/1.png');
    background-size: cover;
    background-position: center;
}

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

.btn {
    display: inline-block;
    background-color: white;
    color: #333;
    padding: 10px 25px;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #eee;
    transform: translateY(-3px);
}

/* About Section */
.about {
    display: flex;
    padding: 50px 0;
    background-color: #f9f9f9;
}

.about-content {
    flex: 2;
    padding: 0 50px;
}

.about-image {
    flex: 1;
    background-image: url('./imgs/2.png');
    background-size: cover;
    background-position: center;
    min-height: 300px;
}

.about h2 {
    margin-bottom: 20px;
    color: #333;
}

.about p {
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Statistics Section */
.statistics {
    display: flex;
    background-color: #fff;
    padding: 40px 50px;
    justify-content: space-between;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #5D3A8E;
}

.stat-text {
    font-size: 0.9rem;
    max-width: 150px;
    margin: 0 auto;
}

/* Services Section */
.services-title {
    text-align: center;
    padding: 30px 0;
    font-size: 1.5rem;
}

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

.service-card {
    background-color: #5D3A8E;
    color: white;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
}

.service-image {
    height: 150px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 20px;
}

.service-title {
    margin-bottom: 15px;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.service-text {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Consulting 2025 Section */
.consulting-2025 {
    display: flex;
    padding: 50px 0;
    background-color: #f9f9f9;
}

.consulting-image {
    flex: 1;
    background-image: url('./imgs/7.png');
    background-size: cover;
    background-position: center;
    min-height: 300px;
}

.consulting-content {
    flex: 2;
    padding: 0 50px;
}

.consulting-content h2 {
    margin-bottom: 20px;
}

.consulting-content p {
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Team Section */
.team {
    padding: 50px;
}

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

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

.team-member {
    text-align: center;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.member-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.member-info {
    padding: 20px;
    background-color: #5D3A8E;
    color: white;
}

.member-name {
    margin-bottom: 10px;
    font-weight: bold;
}

.member-title {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.member-description {
    font-size: 0.8rem;
    line-height: 1.5;
}

/* FAQ Section */
.faq {
    padding: 50px;
    background-color: #f9f9f9;
}

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

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background-color: #5D3A8E;
    color: white;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:after {
    content: '+';
    font-size: 1.5rem;
}

.faq-answer {
    background-color: #fff;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    padding: 20px;
    line-height: 1.5;
}

.faq-item.active .faq-question:after {
    content: '-';
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0;
}

/* Contact Form */
.contact {
    padding: 50px;
    background-color: #5D3A8E;
    color: white;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: white;
    color: #5D3A8E;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}

/* Footer */
footer {
    background-color: #111;
    color: white;
    padding: 15px 0;
    text-align: center;
    font-size: 0.8rem;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    text-align: center;
    max-width: 90%;
    width: 500px;
    display: none;
}

.cookie-consent p {
    margin-bottom: 20px;
    color: #333;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cookie-btn {
    padding: 10px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    background-color: #5D3A8E;
    color: white;
}

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

@media (max-width: 768px) {
    .hero, .about, .consulting-2025 {
        flex-direction: column;
    }

    .hero-image, .about-image, .consulting-image {
        min-height: 250px;
    }

    .statistics {
        flex-direction: column;
        padding: 20px;
    }

    .stat-item {
        margin-bottom: 30px;
    }

    .services-grid, .team-grid {
        grid-template-columns: 1fr;
    }

    .services-grid, .team, .faq {
        padding: 20px;
    }
}