@import url("../header.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    padding: 20px;
    padding-top: 110px;
}

.service-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    padding: 48px 40px;
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

h1 {
    font-size: 2.5rem;
    color: #1d1d1d;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-tagline {
    font-size: 1.1rem;
    color: #0071e3;
    margin-bottom: 32px;
    font-weight: 500;
}

.divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #0071e3, transparent);
    margin: 32px 0;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #424245;
    margin-bottom: 32px;
}

.service-benefits {
    background: #f5f7fa;
    border-left: 4px solid #0071e3;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.service-benefits h3 {
    color: #1d1d1d;
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.service-benefits ul {
    list-style: none;
    padding: 0;
}

.service-benefits li {
    padding: 10px 0;
    color: #424245;
    display: flex;
    align-items: center;
}

.service-benefits li:before {
    content: "✓";
    color: #0071e3;
    font-weight: bold;
    margin-right: 12px;
    font-size: 1.2rem;
}

.pricing-info {
    background: #f0f7ff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 32px;
    border: 1px solid #dae8f4;
}

.pricing-info h4 {
    color: #0071e3;
    margin-bottom: 12px;
    font-size: 1rem;
}

.pricing-info p {
    color: #424245;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: #0071e3;
    color: white;
    padding: 16px 40px;
    border-radius: 24px;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
    border: none;
    cursor: pointer;
    margin-bottom: 16px;
}

.cta-button:hover {
    background: #0051bb;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 113, 227, 0.4);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #0071e3;
    padding: 12px 28px;
    border: 2px solid #0071e3;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 12px;
}

.cta-secondary:hover {
    background: #0071e3;
    color: white;
    transform: translateY(-2px);
}

footer {
    text-align: center;
    margin-top: 60px;
    padding: 20px;
    color: #666;
    font-size: 0.9rem;
}

.breadcrumb {
    margin-bottom: 32px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #0071e3;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    body {
        padding-top: 150px;
    }

    header {
        padding: 12px 16px;
        flex-direction: column;
        gap: 12px;
    }

    .nav-buttons {
        width: 100%;
    }

    .nav-btn {
        flex: 1;
        text-align: center;
    }

    .phone-info {
        align-items: center;
        flex-direction: column;
        gap: 4px;
        width: 100%;
    }

    .phone-number {
        font-size: 0.95rem;
    }

    .email-address {
        font-size: 0.85rem;
    }

    .consultation-text {
        font-size: 0.75rem;
    }

    .service-container {
        padding: 32px 20px;
        border-radius: 16px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .service-icon {
        font-size: 2.8rem;
    }

    .service-description {
        font-size: 1rem;
    }

    .cta-button,
    .cta-secondary {
        display: block;
        margin: 10px 0;
        text-align: center;
    }

    .cta-secondary {
        margin-left: 0;
    }
}
