/* Reset and Base Styles */
@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

:root {
    --buttercup: #FE5000;
    --primary-blue: #0F4C81;
    --dark-bg: #1f2937;
    --darker-bg: #111827;
    --text-dark: #1f2937;
    --text-gray: #4b5563;
    --text-light-gray: #767676;
    --bg-light: #f9fafb;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sticky Navigation */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(229, 231, 235, 0.93);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 0.8px solid rgba(255, 255, 255, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-img {
    height: 30px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #111827;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #F15A24 0%, #1A2A42 100%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover {
    background: transparent;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 65%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #111827;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.lang-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    background-color: #0368b6;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-left: 1rem;
    min-width: 45px;
    height: 36px;
}

.lang-switcher:hover {
    background-color: #03589a;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(3, 104, 182, 0.3);
}

/* Hero Section */
.hero {
    color: white;
    padding: 0;
    padding-bottom: 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 70px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.72);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-logo {
    max-width: 333px;
    height: auto;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 19.2px;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 30.7px;
    color: #ffffff;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 20.8px 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17.6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 28.16px;
}

.cta-button.industrial {
    background-color: #0368b6;
    color: white;
    border: 1px solid #0368b6;
}

.cta-button.industrial:hover {
    background-color: #03589a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.cta-button.tech {
    background-color: #FE5000;
    color: white;
    border: 1px solid #FE5000;
}

.cta-button.tech:hover {
    background-color: #e54700;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
    line-height: 64px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.section-logo {
    max-width: 276px;
    height: auto;
    margin: 0 auto 2.5rem;
    display: block;
}

.section-subtitle {
    font-size: 19.2px;
    color: #767676;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 30.7px;
}

/* Industrial Section */
.industrial-section {
    background-color: #f9fafb;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

.content-text h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
    line-height: 38.4px;
}

.content-text p {
    margin-bottom: 1.5rem;
    color: #4b5563;
    line-height: 27.2px;
    font-size: 16px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #4b5563;
    font-size: 16px;
    line-height: 25.6px;
}

.benefits-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #FE5000;
    font-weight: bold;
    font-size: 19.2px;
}

.product-image-container {
    margin-bottom: 2rem;
    text-align: center;
}

.product-image {
    max-width: 100%;
    height: auto;
    border-radius: 3px;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15);
}

.impact-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.impact-section h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
    line-height: 38.4px;
}

.impact-section p {
    color: #333333;
    font-size: 16px;
    line-height: 25.6px;
    margin-bottom: 1rem;
}

/* Tech Section */
.tech-section {
    background-color: #ffffff;
}

.heading-gestion {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
    line-height: 38.4px;
}

.la-posibilidad-de {
    margin-bottom: 1.5rem;
    color: #4b5563;
    line-height: 27.2px;
    font-size: 16px;
}

/* Tech Cards Grid */
.tech-cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
}

.tech-card {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 8.93px;
    box-shadow: 0px 2.98px 4.47px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 0.74px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 1 250px;
    min-width: 220px;
    max-width: 300px;
}

.tech-icon-img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    object-fit: contain;
}

.tech-card h4 {
    font-size: 14.3px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
    line-height: 22.9px;
}

.tech-card p {
    color: #767676;
    font-size: 11.3px;
    line-height: 17px;
}

/* Environmental Section */
.environmental-section {
    background-image: url('assets/sustainability_section.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    position: relative;
    min-height: 100vh;
    padding-top: 4rem;
}

.environmental-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.environmental-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 8rem);
}

.environmental-section .section-title,
.environmental-section .section-subtitle {
    color: white;
}

.environmental-section .section-header {
    margin-top: 0;
    margin-bottom: 0;
}

.environmental-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: auto 0;
    justify-content: center;
}

.env-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 0 1 320px;
    min-width: 300px;
    max-width: 380px;
}

.env-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.stat {
    margin: 1.5rem 0;
}

.stat .number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    color: #FBBF24;
}

.stat .unit {
    font-size: 1rem;
    opacity: 0.9;
}

.env-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    background-color: #f9fafb;
    padding: 80px 0;
}

.team-section .section-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.team-section .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 8.38px;
    box-shadow: 0px 2.79px 4.19px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 0.7px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 1 300px;
    min-width: 250px;
    max-width: 300px;
}

.team-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-member h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
    line-height: 23.2px;
}

.team-member .role {
    font-size: 12px;
    font-weight: 600;
    color: #0F4C81;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.35px;
    line-height: 16.1px;
}

.team-member p:not(.role) {
    color: #767676;
    line-height: 19px;
    font-size: 12px;
}

/* Why Not Real Yet Section */
.why-not-real-section {
    background: linear-gradient(158deg, rgba(249, 250, 251, 1) 0%, rgba(229, 231, 235, 1) 100%);
    padding: 80px 0;
    border-top: 0.8px solid #e5e7eb;
    border-bottom: 0.8px solid #e5e7eb;
}

.why-not-real-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.why-not-real-text h2 {
    font-size: 35.2px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
    line-height: 45.8px;
}

.why-not-real-text p {
    font-size: 17.6px;
    line-height: 29.9px;
    color: #4b5563;
    margin-bottom: 0;
}

.why-not-real-cta {
    text-align: center;
}

.btn-primary {
    background: #0368b6;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 17.6px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0px 4px 15px rgba(59, 130, 246, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    background-color: #1f2937;
    color: white;
    text-align: center;
}

/* Button color variations */
.why-not-real-section .btn-primary {
    background: #0368b6;
}

.cta-section .btn-primary {
    background: #FE5000;
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 64px;
    color: #ffffff;
}

/* Involvement Form */
.involvement-form-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #f9fafb;
    font-size: 17.6px;
    line-height: 28.2px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 17.6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0F4C81;
    background: rgba(255, 255, 255, 0.15);
}

/* User Type Selector */
.user-type-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
    gap: 10px;
    margin-bottom: 0.5rem;
}

.user-type-btn {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15.2px;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
}

.user-type-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.user-type-btn.active {
    background: #0F4C81;
    border-color: #0F4C81;
    color: white;
}

/* Product Interest */
.product-interest {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.checkbox-label input[type="checkbox"] {
    width: 15.6px;
    height: 15.6px;
    margin-right: 1rem;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: white;
    border-radius: 2.5px;
    border: 1px solid #767676;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked {
    background-color: #0F4C81;
    border-color: #0F4C81;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.checkbox-label span {
    color: #f9fafb;
    font-weight: 500;
    font-size: 17.6px;
}

/* Form Buttons */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 19.2px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Arial', sans-serif;
}

.btn-primary {
    background: linear-gradient(172deg, rgba(241, 90, 36, 1) 0%, rgba(31, 41, 55, 1) 100%);
    color: white;
    box-shadow: 0px 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    opacity: 0.9;
}

.btn-large {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 19.2px;
}

/* Contact Information */
.contact-info {
    margin-top: 3rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 0.8px solid rgba(255, 255, 255, 0.2);
}

.contact-info h3 {
    font-size: 28.8px;
    font-weight: 600;
    color: #f9fafb;
    margin-bottom: 0.5rem;
    line-height: 46.1px;
}

.contact-info > p {
    font-size: 17.6px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 28.16px;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-detail {
    color: #f9fafb;
    font-size: 16px;
    line-height: 25.6px;
}

.contact-detail strong {
    color: #0F4C81;
    font-weight: 600;
}

.contact-detail a {
    color: #f9fafb;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-detail a:hover {
    color: var(--buttercup);
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: #111827;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #f9fafb;
    font-size: 18.7px;
    font-weight: 700;
    line-height: 29.95px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
    line-height: 25.6px;
}

.footer-section a:hover {
    color: var(--buttercup);
}

.footer-section p {
    color: #ffffff;
    font-size: 16px;
    line-height: 25.6px;
}

.footer-bottom {
    border-top: 0.8px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
    font-size: 16px;
    line-height: 25.6px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 60px 0;
    }
    
    .hero-logo {
        max-width: 250px;
    }
    
    .hero-description {
        font-size: 16px;
        line-height: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-image-container {
        order: -1;
    }
    
    .section-title {
        font-size: 32px;
        line-height: 48px;
    }
    
    .section-logo {
        max-width: 200px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    
    .why-not-real-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .why-not-real-text h2 {
        font-size: 28px;
        line-height: 36px;
    }
    
    .stat .number {
        font-size: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 32px;
        line-height: 48px;
    }
    
    .involvement-form-content {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .user-type-selector {
        grid-template-columns: 1fr;
    }
    
    .product-interest {
        gap: 0.8rem;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .nav-container {
        padding: 0 1.5rem;
    }
    
    /* Mobile Navigation */
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(229, 231, 235, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        gap: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        width: 200px;
        text-align: center;
        color: #111827;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .lang-switcher {
        margin-left: 0.5rem;
        padding: 0.4rem 0.8rem;
        font-size: 13px;
        min-width: 40px;
        height: 32px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
        padding: 40px 0;
    }
    
    .hero-logo {
        max-width: 200px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .why-not-real-section {
        padding: 60px 0;
    }
    
    .why-not-real-text h2 {
        font-size: 24px;
        line-height: 32px;
    }
    
    .why-not-real-text p {
        font-size: 16px;
    }
    
    .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 16px;
    }
    
    .cta-content h2 {
        font-size: 24px;
        line-height: 36px;
    }
    
    .section-logo {
        max-width: 150px;
    }
    
    .involvement-form-content {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group textarea {
        padding: 0.8rem;
    }
    
    .user-type-btn {
        padding: 0.8rem;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 16px;
    }
    
    .contact-info h3 {
        font-size: 24px;
    }
    
    .contact-details {
        gap: 1rem;
    }
    
    .lang-switcher {
        margin-left: 0.5rem;
        padding: 0.35rem 0.7rem;
        font-size: 12px;
        min-width: 35px;
        height: 28px;
    }
}

/* Focus styles for accessibility */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid #0F4C81;
    outline-offset: 2px;
}
