/* CSS Reset and Base Styles */
@import url('cookie-banner.css');

@import url('cookie-banner.css');



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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #5F5873;
    background-color: #F7F4FF;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #6C5CE7 0%, #A29BFE 100%);
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(108, 92, 231, 0.3);
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    flex-shrink: 0;
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    color: white;
}

.brand-tagline {
    font-size: 14px;
    font-weight: 400;
    color: #FDA7DF;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #6C5CE7 0%, #5546C7 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0 50c25 0 25-25 50-25s25 25 50 25v50H0z" fill="rgba(253,167,223,0.15)"/></svg>') no-repeat bottom center;
    background-size: cover;
}

.hero-main {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: left;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    color: #EEE6FF;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #FDA7DF;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image svg {
    max-width: 100%;
    height: auto;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #6C5CE7;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #FDA7DF, #FDA7DF);
    border-radius: 2px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
    text-align: center;
}

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

.about-card {
    background: #F7F4FF;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #E5DDFF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(108, 92, 231, 0.15);
}

.about-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: #6C5CE7;
    margin: 20px 0 15px;
}

.about-card p {
    color: #7A7391;
    line-height: 1.6;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: #F7F4FF;
    text-align: center;
}

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

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(44, 95, 122, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(44, 95, 122, 0.2);
}

.product-image-container {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F7F4FF;
    border-radius: 8px 8px 0 0;
}

.product-image-container svg {
    max-width: 100%;
    max-height: 100%;
}

.product-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #6C5CE7;
    margin: 20px 20px 10px;
}

.product-card p {
    color: #7A7391;
    margin: 0 20px 15px;
    line-height: 1.5;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: #FDA7DF;
    margin: 0 20px 20px;
}

.product-btn {
    display: block;
    background: linear-gradient(135deg, #6C5CE7 0%, #A29BFE 100%);
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    margin: 0 20px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: background 0.3s ease;
}

.product-btn:hover {
    background: linear-gradient(135deg, #5546C7 0%, #6C5CE7 100%);
}

/* Technology Section */
.technology {
    padding: 100px 0;
    background: white;
    text-align: center;
}

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

.tech-text h4 {
    font-size: 28px;
    font-weight: 600;
    color: #6C5CE7;
    margin-bottom: 20px;
}

.tech-text p {
    color: #7A7391;
    margin-bottom: 30px;
    line-height: 1.6;
}

.tech-features {
    list-style: none;
}

.tech-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #5F5873;
}

.tech-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FDA7DF;
    font-weight: bold;
    font-size: 16px;
}

.tech-image .placeholder-image {
    height: 300px;
    font-size: 16px;
}

.tech-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-image svg {
    max-width: 100%;
    height: auto;
}

/* Regional Section */
.regional {
    padding: 100px 0;
    background: #F7F4FF;
    text-align: center;
}

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

.regional-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(44, 95, 122, 0.1);
}

.regional-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: #6C5CE7;
    margin-bottom: 15px;
}

.regional-card p {
    color: #7A7391;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
    text-align: center;
}

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

.service-card {
    text-align: center;
    padding: 40px 30px;
}

.service-card h4 {
    font-size: 24px;
    font-weight: 600;
    color: #6C5CE7;
    margin: 20px 0 15px;
}

.service-card p {
    color: #7A7391;
    line-height: 1.6;
    font-size: 16px;
}

/* Sustainability Section */
.sustainability {
    padding: 100px 0;
    background: #F7F4FF;
    text-align: center;
}

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

.sustainability-text h4 {
    font-size: 28px;
    font-weight: 600;
    color: #6C5CE7;
    margin-bottom: 20px;
}

.sustainability-text p {
    color: #7A7391;
    margin-bottom: 30px;
    line-height: 1.6;
}

.sustainability-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #FDA7DF;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    color: #7A7391;
    font-size: 14px;
}

.sustainability-image .placeholder-image {
    height: 300px;
    font-size: 16px;
}

.sustainability-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sustainability-image svg {
    max-width: 100%;
    height: auto;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

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

.contact-card {
    text-align: center;
    padding: 40px 30px;
    background: #F7F4FF;
    border-radius: 12px;
    border: 1px solid #E5DDFF;
}

.contact-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #6C5CE7;
    margin: 20px 0 15px;
}

.contact-card p {
    color: #7A7391;
    margin-bottom: 10px;
}

.contact-card a {
    color: #6C5CE7;
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    color: #FDA7DF;
}

/* Footer */
.footer {
    background: #6C5CE7;
    color: white;
    padding: 60px 0 30px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-brand p {
    color: #D9D2FF;
    line-height: 1.6;
    margin-top: 20px;
}

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

.footer-nav-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-column h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #FDA7DF;
}

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

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

.footer-column ul li a {
    color: #D9D2FF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #FDA7DF;
}

.footer-bottom {
    border-top: 1px solid #A29BFE;
    padding-top: 30px;
    text-align: center;
    color: #D9D2FF;
}

.footer .logo-section {
    margin-bottom: 20px;
}

.footer .brand-name {
    color: white;
    font-size: 24px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-main {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .tech-content,
    .sustainability-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-navigation {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .about-grid,
    .products-grid,
    .regional-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .sustainability-stats {
        justify-content: center;
    }
    
    .footer-navigation {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 15px 0;
    }
    
    .brand-name {
        font-size: 24px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .footer-navigation {
        gap: 15px;
    }
}
