* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fff;
    overflow-x: hidden;
}

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

/* Header */
header {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.95);
}

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

.logo {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    background: linear-gradient(135deg, rgba(31,166,74,0.05) 0%, rgba(244,196,48,0.05) 100%);
    border-radius: 12px;
}

.logo img {
    height: 180px;
    width: auto;
    max-width: 600px;
    filter: drop-shadow(0 2px 8px rgba(31,166,74,0.2));
}

.logo:hover img {
    filter: drop-shadow(0 4px 12px rgba(31,166,74,0.3));
    transform: scale(1.05);
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: #1fa64a;
    letter-spacing: -0.5px;
}

nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
}

nav a:hover {
    color: #1fa64a;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1fa64a;
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

.nav-cta {
    background: #1fa64a;
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: #178a3d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(31,166,74,0.3);
}

.nav-cta::after {
    display: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1fa64a 0%, #178a3d 50%, #0d5c28 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(244,196,48,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(31,166,74,0.2) 0%, transparent 40%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 60px,
        rgba(255,255,255,0.03) 60px,
        rgba(255,255,255,0.03) 120px
    );
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

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

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    animation: float 20s infinite ease-in-out;
    backdrop-filter: blur(2px);
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: 5%;
    animation-delay: 0s;
    background: radial-gradient(circle, rgba(244,196,48,0.2) 0%, rgba(255,255,255,0.05) 100%);
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: 10%;
    animation-delay: 5s;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(31,166,74,0.05) 100%);
}

.shape-3 {
    width: 250px;
    height: 250px;
    top: 40%;
    right: -80px;
    animation-delay: 10s;
    background: radial-gradient(circle, rgba(244,196,48,0.15) 0%, transparent 70%);
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1); 
    }
    33% { 
        transform: translateY(-40px) rotate(120deg) scale(1.1); 
    }
    66% { 
        transform: translateY(-20px) rotate(240deg) scale(0.9); 
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(255,255,255,0.3);
    animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease 0.2s both;
}

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

.highlight {
    color: #f4c430;
    position: relative;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
    background: #f4c430;
    color: #1a1a1a;
    box-shadow: 0 5px 20px rgba(244,196,48,0.4);
}

.btn-primary:hover {
    background: #ffd54f;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244,196,48,0.5);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.btn-light {
    background: #fff;
    color: #1fa64a;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.hero-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.intro-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.intro-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #fff;
}

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

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

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

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid #f0f0f0;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(31,166,74,0.15);
    border-color: #1fa64a;
}

.service-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* Why Section */
.why-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.why-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.why-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.why-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1fa64a 0%, #178a3d 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #333;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: #1fa64a;
}

.footer-info p {
    color: #999;
    font-size: 14px;
    margin-top: 5px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

.footer-links a:hover {
    color: #1fa64a;
}

.footer-contact {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-contact p {
    color: #ccc;
    margin: 0;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-bottom p {
    color: #999;
    font-size: 14px;
    margin: 0;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1fa64a 0%, #178a3d 50%, #0d5c28 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(244,196,48,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(31,166,74,0.2) 0%, transparent 40%);
    animation: pulse 15s ease-in-out infinite;
}

.page-header::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 60px,
        rgba(255,255,255,0.03) 60px,
        rgba(255,255,255,0.03) 120px
    );
    animation: slide 20s linear infinite;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
}

/* Content Section */
.content-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.content-box {
    max-width: 850px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

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

.content-box strong {
    color: #1fa64a;
    font-weight: 600;
}

/* Solutions Intro */
.solutions-intro {
    padding: 60px 0;
    background: #fff;
}

.intro-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-box h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.intro-box p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

/* Solutions Detailed */
.solutions-detailed {
    padding: 60px 0 100px;
    background: #f8f9fa;
}

.solution-detail {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s;
}

.solution-detail:hover {
    border-color: #1fa64a;
    box-shadow: 0 10px 40px rgba(31,166,74,0.12);
    transform: translateY(-5px);
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

.solution-icon-large {
    font-size: 64px;
    flex-shrink: 0;
}

.solution-title h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.solution-subtitle {
    font-size: 16px;
    color: #1fa64a;
    font-weight: 600;
    margin: 0;
}

.solution-body p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.solution-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.feature-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: #1fa64a;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #bbf7d0;
}

/* Industries List */
.industries-list {
    list-style: none;
    padding: 20px 0;
}

.industries-list li {
    padding: 20px 30px;
    margin: 12px 0;
    background: #fff;
    border-left: 5px solid #1fa64a;
    font-size: 18px;
    color: #333;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.industries-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(31,166,74,0.15);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-wrapper {
    display: grid;
    gap: 50px;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.info-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid #f0f0f0;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(31,166,74,0.15);
    border-color: #1fa64a;
}

.info-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.info-card p {
    color: #666;
    font-size: 15px;
    margin: 5px 0;
}

.info-link {
    display: inline-block;
    margin-top: 15px;
    color: #1fa64a;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.info-link:hover {
    color: #178a3d;
    transform: translateX(5px);
}

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

.contact-form {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-form h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.form-subtitle {
    color: #666;
    margin-bottom: 35px;
    font-size: 16px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
    background: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #1fa64a;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(31,166,74,0.1);
}

.contact-form select {
    cursor: pointer;
}

.contact-form button {
    width: 100%;
    margin-top: 10px;
}

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

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px 80px;
    border: 2px solid #e0e0e0;
}

.map-content {
    text-align: center;
}

.map-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.map-content h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.map-content p {
    color: #666;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    header {
        padding: 12px 0;
    }
    
    nav {
        gap: 12px;
        flex-wrap: wrap;
    }
    
    nav a {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .nav-cta {
        padding: 8px 15px !important;
        font-size: 13px !important;
    }
    
    .logo img {
        height: 100px;
    }
    
    .hero {
        padding: 60px 0 50px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn {
        display: block;
        text-align: center;
        padding: 14px 30px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .services-grid, .why-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-box h2, .content-block h2 {
        font-size: 28px;
    }
    
    .intro-box p {
        font-size: 16px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .footer-contact {
        justify-content: center;
        gap: 10px;
        flex-direction: column;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-form h2 {
        font-size: 26px;
    }
    
    .map-placeholder {
        height: 300px;
        margin: 0 15px 60px;
    }
    
    .industries-list li {
        padding: 15px 20px;
        font-size: 16px;
    }
}
}

/* About Modern Section */
.about-modern {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
}

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

.about-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #f0f0f0;
    transition: all 0.3s;
}

.about-card:hover {
    border-color: #1fa64a;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(31,166,74,0.15);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.about-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.about-card p {
    font-size: 14px;
    color: #666;
}

.about-main-content {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.06);
}

.content-block h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.content-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.mission-highlight {
    display: flex;
    gap: 20px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 30px;
    border-radius: 16px;
    margin: 35px 0;
    border-left: 5px solid #1fa64a;
}

.highlight-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.highlight-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.highlight-text p {
    font-size: 16px;
    color: #555;
    margin: 0;
}

.sectors-list {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
}

.sectors-list h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.sectors-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag {
    display: inline-block;
    background: #f8f9fa;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    border: 2px solid #e9ecef;
    transition: all 0.3s;
}

.tag:hover {
    background: #1fa64a;
    color: #fff;
    border-color: #1fa64a;
    transform: translateY(-3px);
}

/* About Page Responsive */
@media (max-width: 768px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-main-content {
        padding: 30px 25px;
    }
    
    .mission-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .sectors-tags {
        justify-content: center;
    }
}

/* Solutions Page Responsive */
@media (max-width: 768px) {
    .solution-detail {
        padding: 25px 20px;
    }
    
    .solution-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .solution-icon-large {
        font-size: 56px;
    }
    
    .solution-title h2 {
        font-size: 24px;
    }
    
    .solution-subtitle {
        font-size: 15px;
    }
    
    .solution-body p {
        font-size: 16px;
    }
    
    .solution-features {
        justify-content: center;
    }
    
    .feature-badge {
        font-size: 13px;
        padding: 8px 14px;
    }
}


/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: #1fa64a;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    header .container {
        position: relative;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 100px 30px 30px;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        gap: 0;
    }
    
    nav.active {
        right: 0;
    }
    
    nav a {
        padding: 15px 20px;
        border-bottom: 1px solid #f0f0f0;
        font-size: 16px;
        width: 100%;
        text-align: left;
    }
    
    .nav-cta {
        margin-top: 20px;
        text-align: center !important;
        border-radius: 8px !important;
        padding: 15px 20px !important;
        font-size: 16px !important;
    }
}
