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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }

p {
    margin-bottom: 1em;
    line-height: 1.5;
}

/* Header */
.header {
    background-color: #ffffff;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    flex-shrink: 0;
}

.brand-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2563eb;
    margin: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
}

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

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

.hero-text h2 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 3rem;
}

.hero-text p {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.6;
}

.hero-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Introduction Section */
.intro {
    padding: 4rem 0;
    background-color: #ffffff;
    text-align: center;
}

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

.intro-text {
    text-align: left;
}

.intro-text h3 {
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.125rem;
    color: #4b5563;
}

.intro-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Services Section */
.services {
    padding: 4rem 0;
    background-color: #f8fafc;
    text-align: center;
}

.services h3 {
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

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

.service-card h4 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-card p {
    color: #64748b;
    margin-bottom: 0;
}

/* Insights Section */
.insights {
    padding: 4rem 0;
    background-color: #ffffff;
    text-align: center;
}

.insights h3 {
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.insights-text {
    text-align: left;
}

.insight-item {
    margin-bottom: 2rem;
}

.insight-item:last-child {
    margin-bottom: 0;
}

.insight-item h4 {
    color: #0d9488;
    margin-bottom: 0.5rem;
}

.insight-item p {
    color: #4b5563;
    margin-bottom: 0;
}

.insights-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Case Studies Section */
.case-studies {
    padding: 4rem 0;
    background-color: #f8fafc;
    text-align: center;
}

.case-studies h3 {
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.case-study {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

.case-study h4 {
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
    color: #1e293b;
}

.case-study p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #64748b;
    margin-bottom: 0;
}

/* Products Section */
.products {
    padding: 4rem 0;
    background-color: #ffffff;
    text-align: center;
}

.products h3 {
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.product-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.product-card h4 {
    color: #2563eb;
    margin-bottom: 1rem;
}

.product-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ea580c;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    background-color: #2563eb;
    color: white;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    border: 2px solid #2563eb;
}

.btn:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
}

.btn-primary {
    background-color: #2563eb;
    border-color: #2563eb;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
}

.btn-secondary {
    background-color: #0d9488;
    border-color: #0d9488;
}

.btn-secondary:hover {
    background-color: #0f766e;
    border-color: #0f766e;
}

.btn-tertiary {
    background-color: #ea580c;
    border-color: #ea580c;
}

.btn-tertiary:hover {
    background-color: #dc2626;
    border-color: #dc2626;
}

.btn-quaternary {
    background-color: #7c3aed;
    border-color: #7c3aed;
}

.btn-quaternary:hover {
    background-color: #6d28d9;
    border-color: #6d28d9;
}

/* Why Choose Section */
.why-choose {
    padding: 4rem 0;
    background-color: #f8fafc;
    text-align: center;
}

.why-choose h3 {
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.why-item {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.why-icon {
    margin-bottom: 1.5rem;
}

.why-item h4 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.why-item p {
    color: #64748b;
    margin-bottom: 0;
}

/* Findings Section */
.findings {
    padding: 4rem 0;
    background-color: #ffffff;
    text-align: center;
}

.findings h3 {
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.findings-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.findings-text {
    text-align: left;
}

.finding-item {
    margin-bottom: 2rem;
    text-align: center;
}

.finding-item:last-child {
    margin-bottom: 0;
}

.finding-stat {
    font-size: 3rem;
    font-weight: 700;
    color: #ea580c;
    margin-bottom: 0.5rem;
}

.finding-item p {
    color: #4b5563;
    margin-bottom: 0;
}

/* Contacts Section */
.contacts {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.contacts h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    flex-shrink: 0;
    padding: 0.75rem;
    background-color: #f1f5f9;
    border-radius: 8px;
}

.contact-details h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #64748b;
    margin-bottom: 0;
}

.contact-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background-color: #1e293b;
    color: #f1f5f9;
    padding: 3rem 0 1rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-left {
    flex: 2;
    max-width: 500px;
}

.footer-left .logo-brand {
    margin-bottom: 1rem;
}

.footer-left .brand-name {
    color: #f1f5f9;
}

.footer-left p {
    color: #94a3b8;
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex: 1;
}

.footer-column h5 {
    color: #f1f5f9;
    margin-bottom: 1rem;
}

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

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #94a3b8;
    text-decoration: none;
}

.footer-column a:hover {
    color: #f1f5f9;
}

.footer-column li:not(:first-child) {
    color: #94a3b8;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    margin-bottom: 0;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

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

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

.cookie-text {
    margin-bottom: 1.5rem;
}

.cookie-text h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #d1d5db;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.cookie-accept {
    background-color: #2563eb;
    color: white;
}

.cookie-accept:hover {
    background-color: #1d4ed8;
}

.cookie-reject {
    background-color: #dc2626;
    color: white;
}

.cookie-reject:hover {
    background-color: #b91c1c;
}

.cookie-customize {
    background-color: #0d9488;
    color: white;
}

.cookie-customize:hover {
    background-color: #0f766e;
}

.cookie-save {
    background-color: #2563eb;
    color: white;
}

.cookie-save:hover {
    background-color: #1d4ed8;
}

.cookie-cancel {
    background-color: transparent;
    color: #94a3b8;
    border: 1px solid #374151;
}

.cookie-cancel:hover {
    background-color: #374151;
    color: white;
}

.cookie-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    align-self: center;
}

.cookie-link:hover {
    color: white;
    text-decoration: underline;
}

.cookie-customization {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.cookie-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cookie-category {
    background-color: #374151;
    padding: 1rem;
    border-radius: 6px;
}

.cookie-category-label {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 0.5rem;
}

.cookie-category-label input[type="checkbox"] {
    margin-right: 0.5rem;
    align-self: flex-start;
}

.cookie-category-name {
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
}

.cookie-category-desc {
    font-size: 0.8rem;
    color: #d1d5db;
    line-height: 1.3;
}

.cookie-custom-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-image img {
        height: 250px;
    }
    
    .intro-grid,
    .insights-content,
    .findings-content,
    .contacts-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    h1 { font-size: 1.875rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .cookie-content {
        padding: 0 15px;
    }
    
    .cookie-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
    
    .cookie-categories {
        grid-template-columns: 1fr;
    }
    
    .cookie-custom-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-text h2 {
        font-size: 1.75rem;
    }
    
    .service-card,
    .product-card,
    .why-item {
        padding: 1.5rem;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .finding-stat {
        font-size: 2rem;
    }
}