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

:root {
    --nature-green: #228B22;
    --tech-blue: #2563EB;
    --soil-brown: #8B4513;
    --sun-yellow: #FFD700;
    --water-blue: #87CEEB;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --text-color: #2c3e50;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

.btn-accept, .btn-learn {
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
}

.btn-accept {
    background: var(--nature-green);
    color: var(--white);
}

.btn-accept:hover {
    background: #1a6b1a;
}

.btn-learn {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    display: inline-block;
}

.btn-learn:hover {
    background: var(--white);
    color: var(--dark-gray);
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--nature-green);
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    letter-spacing: -1px;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--nature-green);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--nature-green);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--nature-green);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--nature-green) 0%, var(--tech-blue) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.1) 10px, rgba(255, 255, 255, 0.1) 20px),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 10 L35 20 L45 22 L37 30 L39 40 L30 35 L21 40 L23 30 L15 22 L25 20 Z' fill='%23ffffff' fill-opacity='0.1'/%3E%3C/svg%3E");
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.hero-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.hero-title {
    font-size: 56px;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--sun-yellow);
    color: var(--dark-gray);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    border: none;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

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

.stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    color: var(--tech-blue);
}

.stat-icon svg {
    width: 100%;
    height: 100%;
}

.stat-value {
    font-size: 42px;
    font-weight: 700;
    color: var(--nature-green);
    margin-bottom: 5px;
    font-family: 'Roboto', sans-serif;
}

.stat-label {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features {
    background: var(--light-gray);
}

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

.feature-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--nature-green), var(--tech-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    color: var(--nature-green);
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.feature-card p {
    color: #666;
    line-height: 1.7;
}

/* Sensor Dashboard */
.sensor-dashboard {
    background: linear-gradient(135deg, var(--tech-blue) 0%, var(--nature-green) 100%);
    color: var(--white);
}

.sensor-dashboard .section-title,
.sensor-dashboard .section-subtitle {
    color: var(--white);
}

.sensor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.sensor-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.sensor-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.sensor-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.sensor-header svg {
    width: 24px;
    height: 24px;
}

.sensor-header span {
    font-weight: 500;
    font-size: 14px;
}

.sensor-value {
    display: flex;
    align-items: baseline;
    margin-bottom: 10px;
}

.sensor-value .value {
    font-size: 36px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

.sensor-value .unit {
    font-size: 18px;
    margin-left: 5px;
    opacity: 0.8;
}

.sensor-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.sensor-status.optimal {
    background: rgba(34, 139, 34, 0.3);
    color: var(--sun-yellow);
}

.sensor-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.sensor-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--sun-yellow), var(--water-blue));
    border-radius: 10px;
    transition: width 1s ease;
}

/* Solutions Section */
.solutions {
    background: var(--white);
}

.solutions-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.solution-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.solution-item.reverse {
    direction: rtl;
}

.solution-item.reverse > * {
    direction: ltr;
}

.solution-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.solution-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.solution-image:hover img {
    transform: scale(1.05);
}

.solution-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.solution-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.solution-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.solution-features li {
    padding-left: 30px;
    position: relative;
    color: var(--text-color);
}

.solution-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--nature-green);
    font-weight: bold;
    font-size: 18px;
}

/* Technology Section */
.technology {
    background: var(--light-gray);
}

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

.tech-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.tech-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--tech-blue);
}

.tech-icon svg {
    width: 100%;
    height: 100%;
}

.tech-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.tech-card p {
    color: #666;
    line-height: 1.7;
    font-size: 14px;
}

/* Benefits Section */
.benefits {
    background: var(--white);
}

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

.benefit-card {
    padding: 35px;
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
    border-radius: 15px;
    border-left: 4px solid var(--nature-green);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateX(10px);
    box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.1);
}

.benefit-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--water-blue);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
}

/* How It Works Section */
.how-it-works {
    background: var(--light-gray);
}

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

.step-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--nature-green), var(--tech-blue));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    box-shadow: 0 5px 15px rgba(34, 139, 34, 0.3);
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 30px auto 20px;
    color: var(--tech-blue);
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.step-card p {
    color: #666;
    line-height: 1.7;
    font-size: 14px;
}

/* Gallery Section */
.gallery {
    background: var(--white);
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    padding: 25px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--light-gray) 0%, #e8f5e9 100%);
    padding: 100px 0;
}

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

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.contact-info > p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail {
    display: flex;
    gap: 20px;
    align-items: start;
}

.contact-detail svg {
    width: 40px;
    height: 40px;
    color: var(--nature-green);
    flex-shrink: 0;
}

.contact-detail h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.contact-detail p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--dark-gray);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Quicksand', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--nature-green);
    box-shadow: 0 0 0 3px rgba(34, 139, 34, 0.1);
}

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

.form-message {
    margin-top: 15px;
    padding: 15px;
    border-radius: 8px;
    display: none;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 20px;
}

.footer-logo {
    font-size: 32px;
    color: var(--nature-green);
    font-family: 'Roboto', sans-serif;
}

.footer-column p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--nature-green);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #999;
}

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

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 30px 0;
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .features-grid,
    .sensor-grid,
    .tech-grid,
    .benefits-grid,
    .steps-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-item,
    .solution-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .solution-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .stat-value {
        font-size: 32px;
    }
    
    .feature-card,
    .benefit-card,
    .tech-card,
    .step-card {
        padding: 25px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .btn-accept,
    .btn-learn {
        width: 100%;
        text-align: center;
    }
}

@media (min-width: 360px) {
    body {
        font-size: 16px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes countUp {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation for Images */
img {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* About Page Styles */
.about-hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--nature-green) 0%, var(--tech-blue) 100%);
    color: var(--white);
    text-align: center;
}

.about-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 20px;
    opacity: 0.95;
}

.about-mission {
    padding: 80px 0;
    background: var(--white);
}

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

.mission-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--dark-gray);
}

.mission-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.mission-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.mission-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-story {
    padding: 80px 0;
    background: var(--light-gray);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 17px;
}

.about-values {
    padding: 80px 0;
    background: var(--white);
}

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

.value-card {
    background: var(--light-gray);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: var(--white);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--nature-green);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

.about-approach {
    padding: 80px 0;
    background: var(--light-gray);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.approach-item {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    position: relative;
    border-left: 4px solid var(--tech-blue);
}

.approach-number {
    font-size: 72px;
    font-weight: 700;
    color: var(--water-blue);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
}

.approach-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.approach-item p {
    color: #666;
    line-height: 1.8;
}

.about-technology {
    padding: 80px 0;
    background: var(--white);
}

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

.tech-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--dark-gray);
}

.tech-text > p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 16px;
}

.tech-features {
    list-style: none;
    display: grid;
    gap: 15px;
}

.tech-features li {
    padding-left: 35px;
    position: relative;
    color: var(--text-color);
    line-height: 1.6;
}

.tech-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--tech-blue);
    font-weight: bold;
    font-size: 20px;
}

.tech-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.tech-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-impact {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--tech-blue) 0%, var(--nature-green) 100%);
    color: var(--white);
}

.about-impact .section-title {
    color: var(--white);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.impact-stat {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.impact-value {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
    color: var(--sun-yellow);
}

.impact-label {
    font-size: 16px;
    opacity: 0.95;
}

.about-commitment {
    padding: 80px 0;
    background: var(--white);
}

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

.commitment-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--dark-gray);
}

.commitment-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 17px;
}

.commitment-cta {
    margin-top: 40px;
}

.about-location {
    padding: 80px 0;
    background: var(--light-gray);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.location-info h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--dark-gray);
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.location-detail {
    display: flex;
    gap: 20px;
    align-items: start;
}

.location-detail svg {
    width: 40px;
    height: 40px;
    color: var(--nature-green);
    flex-shrink: 0;
}

.location-detail strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.location-detail p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.location-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.location-map img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--nature-green) 0%, var(--tech-blue) 100%);
    color: var(--white);
    text-align: center;
}

.about-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

@media (max-width: 1024px) {
    .mission-grid,
    .tech-content-wrapper,
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .approach-grid,
    .impact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 36px;
    }
    
    .about-hero p {
        font-size: 16px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-value {
        font-size: 42px;
    }
}

/* Legal Pages Styles */
.legal-page {
    padding: 150px 0 100px;
    background: var(--light-gray);
    min-height: 100vh;
}

.legal-page h1 {
    font-size: 42px;
    color: var(--dark-gray);
    margin-bottom: 10px;
    text-align: center;
}

.legal-updated {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 50px;
    font-style: italic;
}

.legal-content {
    background: var(--white);
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 26px;
    color: var(--nature-green);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 20px;
    color: var(--tech-blue);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
    text-align: justify;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 40px;
}

.legal-content ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-content strong {
    color: var(--dark-gray);
    font-weight: 600;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 120px 0 60px;
    }
    
    .legal-page h1 {
        font-size: 32px;
    }
    
    .legal-content {
        padding: 30px 20px;
    }
    
    .legal-content h2 {
        font-size: 22px;
    }
    
    .legal-content h3 {
        font-size: 18px;
    }
    
    .legal-content p {
        text-align: left;
    }
}

