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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-popup.show {
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    text-align: center;
    margin: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cookie-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.cookie-content p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #666;
}

.accept-cookies-btn {
    background: #e85a2b;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.accept-cookies-btn:hover {
    background: #d14a1e;
    transform: translateY(-2px);
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.nav-brand h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

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

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

.nav-link:hover {
    color: #e85a2b;
}

.cta-button {
    background: #e85a2b;
    color: white !important;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.cta-button:hover {
    background: #d14a1e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 90, 43, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c3e50 0%, #4a6741 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./assets/hero-bg.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-description {
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Automation Section */
.automation-section {
    padding: 80px 0;
    background: #e85a2b;
    color: white;
}

.automation-section .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.automation-content {
    flex: 1;
}

.automation-content h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.2;
}

.automation-content p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.95;
}

.automation-image {
    flex: 1;
}

.automation-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.insights-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.insights-image {
    flex: 0 0 300px;
    text-align: center;
}

.insights-image img {
    width: 200px;
    height: auto;
}

.insights-text {
    flex: 1;
}

.insights-text h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

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

.insights-text .cta-button {
    margin-top: 30px;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission-icon {
    margin-bottom: 30px;
}

.mission-icon img {
    width: 80px;
    height: auto;
}

.mission-content h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

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

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

.about-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

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

.about-text strong {
    color: #333;
    font-weight: 600;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.contact-content h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.contact-content p {
    font-size: 18px;
    margin-bottom: 50px;
    color: #666;
}

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

.contact-form input {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.contact-form input:focus {
    outline: none;
    border-color: #e85a2b;
}

.submit-btn {
    background: #e85a2b;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #d14a1e;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0;
}

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav {
        gap: 20px;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .automation-section .container {
        flex-direction: column;
        text-align: center;
    }
    
    .insights-content {
        flex-direction: column;
        text-align: center;
    }
    
    .insights-image {
        flex: none;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .cookie-content h3 {
        font-size: 20px;
    }
    
    .cookie-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .automation-content h2,
    .insights-text h2,
    .mission-content h2,
    .about-text h2,
    .contact-content h2 {
        font-size: 28px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .automation-section,
    .insights-section,
    .mission-section,
    .about-section,
    .contact-section {
        padding: 60px 0;
    }
}