* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --deep-steel-blue: #2C5364;
    --cool-gray: #7A8B99;
    --bright-orange: #FF6B35;
    --light-gray: #F4F6F8;
    --white: #FFFFFF;
    --dark-text: #1A1A1A;
    --shadow: rgba(44, 83, 100, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--dark-text);
    background-color: var(--white);
}

.container-fluid {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 25px;
}

.main-header {
    background-color: var(--deep-steel-blue);
    padding: 18px 0;
    box-shadow: 0 3px 12px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navigation-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.company-logo {
    width: 55px;
    height: 55px;
    border-radius: 8px;
    object-fit: cover;
}

.brand-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--bright-orange);
    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(--bright-orange);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 26px;
    cursor: pointer;
}

.hero-banner {
    position: relative;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 83, 100, 0.85), rgba(122, 139, 153, 0.75));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 850px;
    padding: 0 25px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 21px;
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn-primary-large {
    padding: 16px 38px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary,
.btn-primary-large {
    background-color: var(--bright-orange);
    color: var(--white);
    border: 2px solid var(--bright-orange);
}

.btn-primary:hover,
.btn-primary-large:hover {
    background-color: #E65A2B;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--deep-steel-blue);
    transform: translateY(-2px);
}

.countdown-section {
    background: linear-gradient(135deg, var(--deep-steel-blue), var(--cool-gray));
    padding: 65px 0;
    text-align: center;
}

.countdown-section h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 700;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.time-unit {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 28px 45px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    min-width: 140px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.time-value {
    display: block;
    font-size: 50px;
    font-weight: 800;
    color: var(--bright-orange);
    line-height: 1;
    margin-bottom: 10px;
}

.time-label {
    font-size: 16px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-section {
    padding: 90px 0;
    background-color: var(--light-gray);
}

.features-section h2 {
    text-align: center;
    font-size: 42px;
    color: var(--deep-steel-blue);
    margin-bottom: 60px;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.feature-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(44, 83, 100, 0.25);
}

.feature-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--bright-orange), #FF8C5F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 38px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 24px;
    color: var(--deep-steel-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: var(--cool-gray);
    line-height: 1.7;
    font-size: 16px;
}

.services-preview {
    padding: 90px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--deep-steel-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 19px;
    color: var(--cool-gray);
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-item {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px var(--shadow);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-6px);
}

.service-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 26px;
    color: var(--deep-steel-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-info p {
    color: var(--cool-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    color: var(--bright-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

.stats-section {
    background: linear-gradient(135deg, var(--deep-steel-blue), var(--cool-gray));
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-box {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 54px;
    font-weight: 800;
    color: var(--bright-orange);
    margin-bottom: 12px;
}

.stat-label {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.testimonials-section {
    padding: 90px 0;
    background-color: var(--light-gray);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 42px;
    color: var(--deep-steel-blue);
    margin-bottom: 60px;
    font-weight: 700;
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--bright-orange);
    font-size: 18px;
    margin-right: 3px;
}

.testimonial-text {
    color: var(--cool-gray);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--deep-steel-blue);
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--cool-gray);
    font-size: 14px;
}

.cta-section {
    background: linear-gradient(135deg, var(--bright-orange), #FF8C5F);
    padding: 90px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 35px;
}

.btn-primary-large {
    background-color: var(--white);
    color: var(--bright-orange);
    border: 2px solid var(--white);
    font-size: 18px;
    padding: 18px 45px;
}

.btn-primary-large:hover {
    background-color: transparent;
    color: var(--white);
}

.main-footer {
    background-color: var(--deep-steel-blue);
    color: var(--white);
    padding: 60px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 22px;
    color: var(--bright-orange);
    font-weight: 600;
}

.footer-column p {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
}

.company-registration {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--bright-orange);
    padding-left: 5px;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact i {
    color: var(--bright-orange);
    margin-top: 3px;
    font-size: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -4px 20px var(--shadow);
    padding: 25px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text h3 {
    font-size: 20px;
    color: var(--deep-steel-blue);
    margin-bottom: 10px;
}

.cookie-text p {
    color: var(--cool-gray);
    line-height: 1.6;
    font-size: 15px;
}

.cookie-text a {
    color: var(--bright-orange);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-cookie-accept,
.btn-cookie-customize,
.btn-cookie-decline {
    padding: 12px 26px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: var(--bright-orange);
    color: var(--white);
}

.btn-cookie-accept:hover {
    background-color: #E65A2B;
}

.btn-cookie-customize {
    background-color: var(--cool-gray);
    color: var(--white);
}

.btn-cookie-customize:hover {
    background-color: var(--deep-steel-blue);
}

.btn-cookie-decline {
    background-color: var(--light-gray);
    color: var(--dark-text);
}

.btn-cookie-decline:hover {
    background-color: #E0E4E8;
}

.page-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 50px 0;
}

.page-number {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--cool-gray);
    border-radius: 6px;
    color: var(--deep-steel-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-number:hover,
.page-number.active {
    background-color: var(--bright-orange);
    color: var(--white);
    border-color: var(--bright-orange);
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 91px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background-color: var(--deep-steel-blue);
        padding: 30px;
        transition: left 0.3s ease;
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 38px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .countdown-timer {
        gap: 20px;
    }
    
    .time-unit {
        padding: 20px 30px;
        min-width: 110px;
    }
    
    .time-value {
        font-size: 38px;
    }
}

@media (max-width: 640px) {
    .hero-banner {
        height: 500px;
    }
    
    .hero-content h1 {
        font-size: 30px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .features-grid,
    .services-showcase,
    .testimonials-wrapper {
        grid-template-columns: 1fr;
    }
    
    .cookie-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: stretch;
    }
    
    .cookie-buttons button {
        flex: 1;
    }
}

h1, h2, h3, h4, h5, h6 {word-break: break-word;}
