* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-col {
    display: flex;
    align-items: center;
}

.nav-col-left {
    flex: 1 1 0;
    min-width: 0;
}
.nav-col-center {
    flex: 2 1 0;
    justify-content: center;
}
.nav-col-right {
    flex: 1 1 0;
    justify-content: flex-end;
}

.logo-group {
    display: flex;
    align-items: center;
}

.site-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-left: 0.5rem;
    white-space: nowrap;
}

.site-logo {
    height: 3rem;
    max-width: 120px;
    width: auto;
    vertical-align: middle;
    margin-right: 0.2rem;
    display: inline-block;
    border-radius: 6px;
    object-fit: contain;
    background: none;
    box-shadow: none;
    margin-top: 2px;
    margin-bottom: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
}

.customer-service {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 1rem;
}

.customer-service-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #2c3e50;
    font-weight: bold;
    font-size: 1.3rem;
    transition: color 0.3s;
}

.customer-service-link i {
    font-size: 2rem;
    color: #3498db;
}

.customer-service-link:hover {
    color: #ff3b30;
}

.customer-service-phone {
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-top: 0.2rem;
    color: #2c3e50;
    text-align: center;
    transition: opacity 0.2s, visibility 0.2s;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 1rem;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 6rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 800;
}

.promo-banner {
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 2rem;
    border-radius: 50px;
    margin: 2rem 0;
    display: inline-block;
}

.promo-text {
    color: #e74c3c;
    font-size: 1.8rem;
    font-weight: bold;
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.promo-subtext {
    color: #2c3e50;
    font-size: 1.4rem;
    display: block;
    margin-top: 0.5rem;
}

.hero p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* CTA Button */
.cta-container {
    margin: 2rem 0;
}

.cta-button {
    display: inline-block;
}

.phone-number {
    display: inline-block;
    background-color: #ff3b30;
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 59, 48, 0.4);
    animation: pulse 1.2s infinite;
    white-space: nowrap;
}

.phone-number i {
    margin-right: 10px;
}

.phone-number:hover {
    transform: scale(1.05);
    background-color: #ff1a1a;
}

.cta-subtext {
    margin-top: 1rem;
    font-size: 1.2rem;
}

.highlight {
    color: #ffeb3b;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.counter {
    display: block;
    margin-top: 0.5rem;
    font-size: 1.1rem;
}

/* Pain Points Section */
.pain-points {
    padding: 5rem 1rem;
    background-color: #f8f9fa;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.pain-points h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-size: 2.5rem;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-card {
    text-align: center;
    padding: 1.2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.solution-card:hover {
    transform: translateY(-10px);
}

.solution-card i {
    font-size: 2.7rem;
    color: #fff;
    background: #3498db;
    border-radius: 50%;
    width: 3.7rem;
    height: 3.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.7rem;
    box-shadow: 0 2px 8px rgba(52,152,219,0.12);
}

.solution-card h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.solution-card p {
    color: #3498db;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 1rem;
    background-color: #fff;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-size: 2.5rem;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 1.2rem;
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid #3498db;
    object-fit: cover;
}

.testimonial-content {
    position: relative;
    padding: 2rem;
    text-align: center;
}

.testimonial-content i {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #2c3e50;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: bold;
    color: #2c3e50;
    font-size: 1.1rem;
}

/* Partners Section */
.partners {
    padding: 5rem 1rem;
    background-color: #f8f9fa;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.partners h2 {
    text-align: center;
    margin-bottom: 1.2rem;
    color: #2c3e50;
    font-size: 2.5rem;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 0 0.7rem 0;
}

.partner-logos img {
    max-width: 180px;
    height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
    filter: none;
}

.partner-logos img:hover {
    transform: scale(1.1);
}

/* Services Section */
.services {
    padding: 5rem 1rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-size: 2.5rem;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.card i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

/* Contact CTA Section */
.contact-cta {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 5rem 1rem;
}

.contact-cta h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #3498db;
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 30px rgba(255, 59, 48, 0);
        transform: scale(1.12);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0);
        transform: scale(1);
    }
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.trust-badges img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    transition: transform 0.3s;
    background: white;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.trust-badges img:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 900px) {
    .main-nav {
        padding: 1rem 2%;
    }
    .nav-links {
        gap: 1.1rem;
        font-size: 0.98rem;
    }
    .site-title {
        font-size: 1.1rem;
    }
    .site-logo {
        height: 2.2rem;
        max-width: 70px;
    }
}

.nav-row-top {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.nav-row-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-top: 0.2rem;
}

@media (max-width: 600px) {
    .main-nav {
        flex-direction: column;
        align-items: stretch;
        padding: 0.5rem 0.5rem;
    }
    .nav-row-top {
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-bottom: 0.2rem;
    }
    .logo-group {
        justify-content: center;
        width: 100%;
    }
    .nav-row-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        width: 100%;
    }
    .nav-col-center {
        flex: 2 1 0;
        width: auto;
        justify-content: flex-start;
        margin: 0;
    }
    .nav-links {
        gap: 0.6rem;
        font-size: 0.92rem;
        flex-wrap: nowrap;
        white-space: nowrap;
        overflow-x: auto;
    }
    .nav-col-right {
        flex: 1 1 0;
        align-items: flex-end;
        justify-content: flex-end;
    }
    .customer-service {
        margin-left: 0;
        margin-top: 0.2rem;
        align-items: flex-end;
    }
    .customer-service-link i {
        font-size: 1.3rem;
    }
    .customer-service-phone {
        display: none;
        position: absolute;
        right: 0;
        top: 2.2rem;
        background: #fff;
        color: #ff3b30;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.12);
        padding: 0.5rem 1rem;
        font-size: 1rem;
        z-index: 10;
        opacity: 0;
        visibility: hidden;
    }
    .customer-service-phone.show-phone {
        display: block;
        opacity: 1;
        visibility: visible;
        animation: fadeIn 0.2s;
    }
    .customer-service {
        position: relative;
    }
    .menu-privacy {
        display: none;
    }
    .phone-number {
        font-size: 1.1rem;
        padding: 1rem 1.2rem;
        white-space: nowrap;
    }
    .partners {
        margin-top: 2.2rem;
        position: relative;
    }
    .partners h2 {
        margin-bottom: 1.6rem;
        background: #fff;
        position: relative;
        z-index: 2;
        padding: 0 0.5rem;
        display: inline-block;
    }
    .partner-logos {
        gap: 1.1rem;
        padding: 0.5rem 0 0.3rem 0;
        margin-top: 0.2rem;
    }
    .partners,
    .pain-points,
    .services,
    .testimonials {
        padding-top: 1.1rem;
        padding-bottom: 1.1rem;
    }
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }
    .solution-card {
        padding: 0.8rem;
    }
    .solution-card i {
        font-size: 2.1rem;
        width: 2.7rem;
        height: 2.7rem;
        margin-bottom: 0.5rem;
    }
    .solution-card h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    .solution-card p {
        font-size: 0.95rem;
    }
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 0.7rem;
    }
    .hero-content {
        padding-top: 2.2rem;
    }
    .promo-banner {
        padding: 0.5rem 1rem;
        margin: 1rem 0;
    }
    .promo-text {
        font-size: 1rem;
    }
    .promo-subtext {
        font-size: 0.9rem;
    }
    .hero p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    .site-logo {
        display: none;
    }
    .logo-group {
        justify-content: center;
        width: 100%;
    }
    .site-title {
        display: block;
        text-align: center;
        font-size: 1.2rem;
        margin: 0 auto;
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .partner-logos {
        gap: 1.5rem;
    }
    
    .partner-logos img {
        max-width: 120px;
        height: 50px;
    }
}

/* Tablet Design */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .solutions-grid,
    .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-logos {
        gap: 3rem;
    }
    
    .partner-logos img {
        max-width: 160px;
        height: 70px;
    }
}

/* Print Styles */
@media print {
    .nav-links,
    .cta-button,
    footer {
        display: none;
    }

    body {
        color: black;
    }

    .hero {
        height: auto;
        background: none;
        color: black;
    }
}

.menu-privacy {
    display: inline-block;
}

.partners,
.pain-points,
.services,
.testimonials {
    padding-top: 1.7rem;
    padding-bottom: 1.7rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
} 