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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #f7fafc;
}

.ad-notice {
    background-color: #fef5e7;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #856404;
    border-bottom: 1px solid: #e8d4a8;
}

.nav-floating {
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, #1a365d 0%, #2d4a7c 100%);
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffffff;
}

.hero-card {
    display: flex;
    max-width: 1200px;
    margin: 60px auto;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.hero-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a202c;
}

.hero-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 30px;
}

.cta-primary {
    display: inline-block;
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    align-self: flex-start;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(49, 130, 206, 0.4);
}

.hero-image {
    flex: 1;
    min-height: 400px;
    background-color: #2a4365;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-text {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.container-narrow {
    text-align: center;
    font-size: 20px;
    color: #2d3748;
    line-height: 1.7;
}

.services-cards {
    max-width: 1300px;
    margin: 80px auto;
    padding: 0 20px;
}

.services-cards h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a202c;
}

.card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    width: 380px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.service-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 28px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a202c;
}

.card-content p {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5282;
    margin-bottom: 18px;
}

.btn-select-service {
    width: 100%;
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-select-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.3);
}

.why-us {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a7c 100%);
    padding: 80px 20px;
    color: #ffffff;
}

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

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

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.feature-item {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    text-align: center;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 15px;
    color: #e2e8f0;
    line-height: 1.6;
}

.process-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.process-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a202c;
}

.process-steps {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.step-card {
    flex: 1;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a202c;
}

.step-card p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

.testimonials {
    background-color: #f7fafc;
    padding: 80px 20px;
}

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

.testimonial-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    color: #2d3748;
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #718096;
}

.cta-final {
    background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #e2e8f0;
}

.cta-button {
    display: inline-block;
    background: #ffffff;
    color: #2c5282;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.form-section {
    max-width: 600px;
    margin: 80px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: #1a202c;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3182ce;
}

.btn-submit {
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.3);
}

.footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: #cbd5e0;
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: #2d3748;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.6;
    color: #cbd5e0;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

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

.cookie-content a {
    color: #63b3ed;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-accept {
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    color: #ffffff;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.3);
}

.btn-reject {
    background-color: #4a5568;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #2d3748;
}

.page-header {
    background: linear-gradient(135deg, #1a365d 0%, #2d4a7c 100%);
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 18px;
    color: #e2e8f0;
}

.page-content {
    max-width: 1000px;
    margin: 60px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.page-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a202c;
}

.page-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2d3748;
}

.page-content p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.page-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.page-content li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #4a5568;
}

.contact-info {
    background: #f7fafc;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item strong {
    display: block;
    margin-bottom: 4px;
    color: #2d3748;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
}

.thanks-icon {
    font-size: 72px;
    margin-bottom: 24px;
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a202c;
}

.thanks-container p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

.thanks-container .selected-service {
    background: #f7fafc;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    font-size: 16px;
    color: #2d3748;
}

.thanks-container a {
    display: inline-block;
    margin-top: 20px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.thanks-container a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(49, 130, 206, 0.4);
}

@media (max-width: 768px) {
    .hero-card {
        flex-direction: column;
    }

    .hero-content {
        padding: 40px 30px;
    }

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

    .nav-floating {
        flex-direction: column;
        gap: 16px;
    }

    .process-steps {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
    }
}