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

:root {
    --primary-color: #2d5016;
    --primary-dark: #1a3009;
    --secondary-color: #4a7c2a;
    --accent-color: #6b9c3f;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 2px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    font-size: 16px;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    gap: 1rem;
}

.language-switcher-top {
    position: fixed;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    z-index: 1001;
    background: white;
    padding: 0.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-btn:hover {
    background: var(--bg-light);
    border-color: var(--primary-color);
}

.lang-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    opacity: 1;
}

.lang-btn:not(.active) {
    opacity: 0.6;
}

.lang-btn:hover {
    opacity: 1;
}

.lang-btn .flag {
    font-size: 1.2rem;
    line-height: 1;
    display: block;
}

.lang-btn.active .flag {
    filter: none;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: var(--transition);
}

.logo-image {
    height: 71.5px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.54rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    transition: var(--transition);
}

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

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

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2d5016 0%, #1a3009 100%);
    z-index: -1;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.95) 0%, rgba(26, 48, 9, 0.95) 100%);
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.contact-subtitle-wrapper {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-subtitle-wrapper h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}


/* About Section */
.about {
    background: var(--bg-white);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text p {
        font-size: 1.125rem;
        color: var(--text-light);
        margin-bottom: 1.5rem;
        line-height: 1.8;
    }

    .about-image {
        text-align: center;
    }

    .section-image {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: var(--shadow-sm);
    }

.about-text-box {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.about-text-box p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.about-image-full {
    margin-top: 2rem;
    text-align: center;
}

.about-image-full .section-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.about-images-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.about-images-row .section-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    object-fit: cover;
}

/* Solution Section */
.solution {
    background: var(--bg-light);
}

.solution-content {
    max-width: 100%;
    margin: 0 auto;
}

.solution-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 3rem 0;
}

.solution-images-three {
    grid-template-columns: repeat(3, 1fr);
}

.solution-image {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    object-fit: cover;
}

.solution-footer {
    margin-top: 3rem;
    text-align: center;
}

.solution-footer p {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.6;
}

.solution-main {
    text-align: center;
    margin-bottom: 3rem;
}

.solution-image-wrapper {
    margin-bottom: 2rem;
}

.solution-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    max-height: 400px;
    object-fit: contain;
}

.solution-main h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.solution-main p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

.process-image-section {
    text-align: center;
    margin: 3rem 0;
}

.process-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    max-height: 500px;
    object-fit: contain;
}

.advantages-grid {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 3rem;
    width: 100%;
    flex-wrap: nowrap;
}

.advantage-card {
    background: white;
    padding: 1.25rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--border-color);
    flex: 1 1 0;
    min-width: 0;
    box-sizing: border-box;
}

.advantage-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.advantage-number {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 600;
}

.advantage-card h4 {
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
    color: var(--text-dark);
}

.advantage-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Services Section */
.services {
    background: var(--bg-white);
}

.services-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.services-intro-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    max-height: 400px;
    object-fit: contain;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-image {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    border-radius: 8px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Team Section */
.team {
    background: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.team-member {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.team-member:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.team-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    position: relative;
    border: 2px solid var(--border-color);
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.team-role {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-light);
    line-height: 1.7;
}

/* Market Section */
.market {
    background: var(--bg-white);
}

.market-content {
    max-width: 1000px;
    margin: 0 auto;
}

.market-graph-text {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    margin-top: 0;
}

.market-graph {
    text-align: center;
}

.market-chart-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-color);
    background: white;
    padding: 1rem;
}

.market-intro-text {
    display: flex;
    align-items: center;
}

.market-intro-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.market-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    margin-top: 0;
}

.market-subtitle {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem 0;
}

.market-subtitle p {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

.market-box {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.market-box:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.market-box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.market-box p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.market-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    margin-top: 0;
}

.market-grid-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.market-grid-image:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.market-image-wrapper {
    text-align: center;
    margin-bottom: 3rem;
}

.market-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    max-height: 500px;
    object-fit: contain;
}

.market-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.market-stats .stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.market-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.market-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.market-text {
    max-width: 800px;
    margin: 0 auto;
}

.market-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Allies Section */
.allies {
    background: var(--bg-light);
}

.allies-content {
    max-width: 1000px;
    margin: 0 auto;
}

.allies-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: center;
    justify-items: center;
    padding: 2rem 0;
}

.ally-link {
    text-decoration: none;
    color: inherit;
    width: 100%;
    display: block;
}

.ally-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 200px;
}

.ally-logo-large {
    height: 250px;
    padding: 2.5rem;
}

.ally-logo:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.ally-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.ally-image-large {
    max-width: 120%;
    max-height: 120%;
}

.allies-image {
    margin-top: 3rem;
    width: 100%;
    text-align: center;
}

.allies-section-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    object-fit: cover;
}

/* Contact Section */
.contact {
    background: var(--bg-light);
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.contact-image-column {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.contact-main-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    object-fit: cover;
    max-height: 400px;
}

.contact-main-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    object-fit: cover;
    max-height: 400px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-right: 1.5rem;
}

.contact-bottom-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.contact-quote-wrapper {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 800px;
    width: 100%;
}


.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.contact-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.contact-section-image {
    width: 100%;
    height: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.contact-message {
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    height: 100%;
}

.contact-message p {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-message ul {
    list-style: none;
    padding-left: 0;
}

.contact-message ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-message ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.contact-message p {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-message ul {
    list-style: none;
    padding-left: 0;
}

.contact-message ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.contact-message ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-left: 1.5rem;
    border-left: 1px solid var(--border-color);
}

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

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-quote-image {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.contact-section-image {
    width: 100%;
    max-width: 363px;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    object-fit: cover;
}

.contact-quote-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    justify-content: center;
}

.contact-quote-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.contact-quote-text p:first-child {
    color: var(--text-dark);
    font-style: italic;
}

.contact-quote-author {
    font-style: normal !important;
    font-weight: 600;
    color: var(--text-dark) !important;
    font-size: 0.85rem !important;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    align-items: flex-end;
    text-align: right;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.footer-logo-image {
    height: 71.5px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo-wrapper h3 {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    color: white !important;
    font-size: 1.54rem !important;
    font-weight: 600 !important;
    letter-spacing: -0.02em !important;
    font-family: inherit;
    line-height: 1.2;
}

.footer-section h4 {
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
}

.footer-description {
    opacity: 0.85;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-website {
    margin: 0;
    font-size: 0.95rem;
}

.footer-website a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
}

.footer-website a:hover {
    color: white;
    opacity: 1;
}

.footer-email {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-copyright {
    margin-top: 1.5rem;
    margin-bottom: 0;
    opacity: 0.7;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-section ul li a:hover {
    color: white;
    opacity: 1;
    transform: translateX(3px);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: white;
    opacity: 1;
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .language-switcher-top {
        top: 0.5rem;
        right: 0.5rem;
        padding: 0.4rem;
    }

    .lang-btn {
        padding: 0.4rem 0.6rem;
    }

    .lang-btn .flag {
        font-size: 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 1rem;
    }

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

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-top-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-image-column {
        justify-content: center;
    }

    .contact-left-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-left-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-image-column {
        justify-content: center;
    }

    .contact-info {
        padding-right: 0;
    }
    
    .contact-quote-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .contact-quote-text {
        text-align: center;
    }

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

    .advantages-grid {
        flex-wrap: wrap;
    }
    
    .advantage-card {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 250px;
    }

    .market-stats {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .btn {
        width: 100%;
        text-align: center;
    }

    .solution-images {
        grid-template-columns: 1fr;
    }
    
    .solution-images-three {
        grid-template-columns: repeat(2, 1fr);
    }

    .solution-image {
        height: 300px;
    }

    .about-images-row {
        grid-template-columns: 1fr;
    }

    .market-graph-text {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .market-boxes {
        grid-template-columns: 1fr;
    }

    .solution-footer p {
        font-size: 1.25rem;
    }

    .footer-main {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .market-stats {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        flex-direction: column;
    }
    
    .advantage-card {
        flex: 1 1 100%;
    }

    .solution-images-three {
        grid-template-columns: 1fr;
    }

    .solution-image {
        height: 250px;
    }

    .market-graph-text {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .market-boxes {
        grid-template-columns: 1fr;
    }

    .market-images-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .market-grid-image {
        height: 250px;
    }

    .allies-logos {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ally-logo {
        height: 150px;
    }
}
