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

:root {
    --primary: #1e3a8a;
    --secondary: #0d9488;
    --accent: #d97706;
    --dark: #1f2937;
    --light: #6b7280;
    --bg-light: #f9fafb;
    --border: #e5e7eb;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

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

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

.brand-name {
    font-weight: bold;
    font-size: 20px;
    color: var(--primary);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

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

.btn-cta {
    background-color: var(--accent);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-cta:hover {
    background-color: #b45309;
}

.btn-cta-large {
    background-color: var(--accent);
    color: var(--white);
    border: none;
    padding: 18px 50px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-cta-large:hover {
    background-color: #b45309;
}

.btn-package {
    width: 100%;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.btn-package:hover {
    background-color: #1e40af;
}

.btn-reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

.btn-accept {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

/* Hero Section */
.hero {
    margin-top: 70px;
    height: 600px;
    background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
}

/* Statistics Section */
.statistics {
    background-color: var(--primary);
    color: var(--white);
    padding: 60px 0;
}

.statistics h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

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

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

.stat-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.services-overview h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

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

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 20px;
}

.service-card p {
    color: var(--light);
    line-height: 1.6;
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
}

.why-us h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

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

.why-card {
    padding: 30px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary);
    border-radius: 5px;
}

.why-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 20px;
}

.why-card p {
    color: var(--light);
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

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

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.testimonial-text {
    font-style: italic;
    color: var(--light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 5px;
}

.testimonial-company {
    font-size: 14px;
    color: var(--light);
}

/* Process Section */
.process {
    padding: 80px 0;
}

.process h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

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

.process-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 18px;
}

.process-step p {
    color: var(--light);
    line-height: 1.6;
}

/* Industries */
.industries {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.industries h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.industry-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.industry-card h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 16px;
}

.industry-card p {
    color: var(--light);
    font-size: 14px;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
}

.pricing h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

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

.pricing-card {
    background-color: var(--white);
    border: 2px solid var(--border);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(30,58,138,0.2);
}

.pricing-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.pricing-card h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 22px;
}

.price {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 20px;
}

.price span {
    font-size: 18px;
    color: var(--light);
    display: block;
    margin-top: 5px;
}

.features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.features li {
    padding: 10px 0;
    color: var(--light);
    border-bottom: 1px solid var(--border);
}

.features li:last-child {
    border-bottom: none;
}

/* Blog Preview */
.blog-preview {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.blog-preview h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

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

.blog-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 18px;
}

.blog-card p {
    color: var(--light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--accent);
}

/* CTA Final */
.cta-final {
    background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-final h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-final p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: var(--white);
    padding: 20px;
    z-index: 999;
    display: flex;
    justify-content: center;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    width: 100%;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
}

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

.cookie-consent.hidden {
    display: none;
}

/* Footer */
.footer {
    background-color: #111827;
    color: #d1d5db;
    padding: 50px 0 20px;
}

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

.footer-col h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

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

.footer-col a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 32px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .btn-reject, .btn-accept {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 400px;
        margin-top: 60px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 14px;
    }

    .btn-cta {
        padding: 12px 30px;
        font-size: 14px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 28px !important;
    }

    .services-grid,
    .why-grid,
    .testimonials-grid,
    .process-grid,
    .industries-grid,
    .pricing-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
