/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    z-index: 1000;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

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

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-category {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
}

.cookie-category h4 {
    margin-bottom: 10px;
    color: #1e40af;
}

.cookie-category input[type="checkbox"] {
    margin-right: 10px;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #1e40af;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #3b82f6;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.hero-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #1e293b;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #64748b;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: white;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn-secondary:hover {
    background: #3b82f6;
    color: white;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section:nth-child(even) {
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: #3b82f6;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #1e293b;
}

.section-header p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: #3b82f6;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #1e293b;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
}

/* About */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .section-header {
    text-align: left;
    margin-bottom: 30px;
}

.about-text .section-header .section-icon {
    margin: 0 0 20px 0;
}

.about-text p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #3b82f6;
    margin-bottom: 5px;
}

.stat p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

.about-graphic svg {
    width: 100%;
    height: auto;
    max-width: 400px;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.team-avatar svg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.team-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 5px;
}

.team-card p {
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 10px;
}

.team-card span {
    color: #64748b;
    font-size: 0.875rem;
}

/* Success */
.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.success-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.success-card:hover {
    transform: translateY(-5px);
}

.success-number {
    font-size: 3rem;
    font-weight: bold;
    color: #10b981;
    margin-bottom: 15px;
}

.success-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 15px;
}

.success-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Goals */
.goals-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.goal-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.goal-item:hover {
    transform: translateX(10px);
}

.goal-icon {
    width: 50px;
    height: 50px;
    color: #3b82f6;
    flex-shrink: 0;
}

.goal-item h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 10px;
}

.goal-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #f1f5f9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3b82f6;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #3b82f6;
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: #cbd5e1;
}

.contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        justify-content: center;
        gap: 20px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .goal-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Legal Pages */
.legal-content {
    padding-top: 120px;
    padding-bottom: 80px;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 15px;
}

.last-updated {
    color: #64748b;
    font-style: italic;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-text h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #1e293b;
    margin: 40px 0 20px 0;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 10px;
}

.legal-text h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #374151;
    margin: 30px 0 15px 0;
}

.legal-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4b5563;
    margin: 20px 0 10px 0;
}

.legal-text p {
    margin-bottom: 15px;
    color: #4b5563;
}

.legal-text ul, .legal-text ol {
    margin: 15px 0 15px 30px;
    color: #4b5563;
}

.legal-text li {
    margin-bottom: 8px;
}

.legal-text a {
    color: #3b82f6;
    text-decoration: underline;
}

.legal-text a:hover {
    color: #1d4ed8;
}

.legal-text strong {
    color: #1e293b;
    font-weight: 600;
}

/* Contact Form */
.contact-form-section {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form .section-header {
    text-align: left;
    margin-bottom: 40px;
}

.contact-form .section-header .section-icon {
    margin: 0 0 20px 0;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    flex-shrink: 0;
}

.checkmark {
    margin-top: 2px;
}

.contact-info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.contact-info-card .section-header {
    text-align: left;
    margin-bottom: 30px;
}

.contact-info-card .section-header .section-icon {
    margin: 0 0 15px 0;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item .contact-icon {
    width: 24px;
    height: 24px;
    color: #3b82f6;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 5px;
}

.contact-item p {
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.contact-item a {
    color: #3b82f6;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item small {
    display: block;
    color: #9ca3af;
    font-size: 0.85rem;
    margin-top: 2px;
}

.social-contact h4 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 15px;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #f8fafc;
}

.map-placeholder {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder svg {
    width: 100%;
    height: 400px;
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.map-overlay p {
    margin: 0;
    font-weight: 600;
    color: #374151;
}

/* FAQ Contact */
.faq-contact {
    padding: 80px 0;
}

.faq-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.faq-contact-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-contact-item h4 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 15px;
}

.faq-contact-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 15px;
}

.thanks-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 40px;
}

.thanks-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
}

.detail-icon {
    width: 40px;
    height: 40px;
    color: #10b981;
    flex-shrink: 0;
}

.detail-item h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 8px;
}

.detail-item p {
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.next-steps {
    margin: 50px 0;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.next-steps h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 30px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step p {
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.contact-urgent {
    margin-top: 50px;
    padding: 30px;
    background: #fef3c7;
    border-radius: 15px;
    border-left: 5px solid #f59e0b;
}

.contact-urgent h3 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #92400e;
    margin-bottom: 10px;
}

.contact-urgent p {
    color: #92400e;
    margin-bottom: 15px;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #92400e;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
}

.phone-link svg {
    width: 20px;
    height: 20px;
}

.phone-link:hover {
    color: #78350f;
}

.contact-urgent small {
    display: block;
    color: #a16207;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Services Page Specific */
.services-hero .hero-background svg {
    /* Orange gradient for services */
}

.main-services {
    padding: 80px 0;
}

.service-card.featured {
    position: relative;
    border: 2px solid #3b82f6;
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #3b82f6;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: #64748b;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 20px 0;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #3b82f6;
}

.duration {
    color: #64748b;
    font-size: 0.9rem;
}

.specialized-services {
    background: #f8fafc;
    padding: 80px 0;
}

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

.specialized-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.specialized-card:hover {
    transform: translateY(-5px);
}

.specialized-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    color: #3b82f6;
}

.specialized-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #10b981;
    margin: 15px 0;
}

.methodology {
    padding: 80px 0;
}

.methodology-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.methodology-steps {
    margin-top: 30px;
}

.methodology-text .section-header {
    text-align: left;
    margin-bottom: 30px;
}

.methodology-text .section-header .section-icon {
    margin: 0 0 20px 0;
}

.faq {
    background: #f8fafc;
    padding: 80px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 15px;
}

.faq-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.cta-section {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

/* Team Page Specific */
.team-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.team-detailed-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.team-detailed-avatar {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.team-detailed-avatar svg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.team-detailed-info h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 5px;
}

.team-role {
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-bio {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-credentials {
    margin-bottom: 20px;
}

.credential {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.credential svg {
    width: 16px;
    height: 16px;
    color: #10b981;
}

.credential span {
    color: #64748b;
    font-size: 0.9rem;
}

.team-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.specialty {
    background: #e0e7ff;
    color: #3730a3;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.team-philosophy {
    background: #f8fafc;
    padding: 80px 0;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.philosophy-text .section-header {
    text-align: left;
    margin-bottom: 30px;
}

.philosophy-text .section-header .section-icon {
    margin: 0 0 20px 0;
}

.philosophy-principles {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.principle {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.principle-icon {
    width: 30px;
    height: 30px;
    color: #3b82f6;
    flex-shrink: 0;
}

.principle h4 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 5px;
}

.principle p {
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.join-team {
    padding: 80px 0;
}

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

.join-requirements {
    margin: 30px 0;
    text-align: left;
}

.requirement {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.requirement-icon {
    width: 20px;
    height: 20px;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

/* About Page Specific */
.story {
    padding: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text .section-header {
    text-align: left;
    margin-bottom: 30px;
}

.story-text .section-header .section-icon {
    margin: 0 0 20px 0;
}

.story-graphic svg {
    width: 100%;
    height: auto;
    max-width: 400px;
}

.mission {
    background: #f8fafc;
    padding: 80px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.mission-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.mission-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: #3b82f6;
}

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 15px;
}

.mission-card p {
    color: #64748b;
    line-height: 1.6;
}

.values {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    color: #3b82f6;
}

.value-card h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 15px;
}

.value-card p {
    color: #64748b;
    line-height: 1.6;
}

.achievements {
    background: #f8fafc;
    padding: 80px 0;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.achievement-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #10b981;
    margin-bottom: 10px;
}

.achievement-card h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 15px;
}

.achievement-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Cookie Preferences Panel */
.cookie-preferences-panel {
    margin: 20px 0;
}

/* Error Messages */
.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 5px;
}

/* Active Navigation */
.nav-menu a.active {
    color: #3b82f6;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        justify-content: center;
        gap: 20px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .goal-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .map-overlay {
        flex-direction: column;
        text-align: center;
    }

    .thanks-details {
        grid-template-columns: 1fr;
    }

    .detail-item {
        flex-direction: column;
        text-align: center;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .methodology-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .team-detailed-card {
        flex-direction: column;
        text-align: center;
    }

    .faq-contact-grid {
        grid-template-columns: 1fr;
    }

    .specialized-grid {
        grid-template-columns: 1fr;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section {
        padding: 40px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .legal-text h2 {
        font-size: 1.5rem;
    }

    .legal-text h3 {
        font-size: 1.2rem;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }

    .contact-info-card {
        padding: 30px 20px;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

    .steps-list {
        text-align: center;
    }

    .step {
        flex-direction: column;
        gap: 10px;
    }
}