* {
    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: #2c3e50;
    background: #f8f9fa;
}

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

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c5282;
}

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

.nav-links a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.2s;
}

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

.hero-section {
    display: flex;
    max-width: 1200px;
    margin: 48px auto;
    gap: 48px;
    padding: 0 24px;
    align-items: center;
}

.hero-content {
    flex: 1;
}

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

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

.cta-button {
    display: inline-block;
    background: #2c5282;
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #1a365d;
}

.hero-image {
    flex: 1;
    background: #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

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

.intro-cards {
    background: #ffffff;
    padding: 64px 24px;
}

.card-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    background: #f7fafc;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-4px);
}

.info-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #cbd5e0;
}

.info-card h3 {
    padding: 20px 24px 8px;
    font-size: 20px;
    color: #1a202c;
}

.info-card p {
    padding: 0 24px 24px;
    color: #4a5568;
    font-size: 15px;
}

.services-overview {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: #718096;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s;
}

.service-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-icon {
    font-size: 42px;
    flex-shrink: 0;
}

.service-details {
    flex: 1;
}

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

.service-details p {
    color: #4a5568;
    margin-bottom: 16px;
}

.price {
    display: inline-block;
    background: #2c5282;
    color: white;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
}

.cta-section {
    text-align: center;
    margin-top: 48px;
    padding: 32px;
    background: #edf2f7;
    border-radius: 12px;
}

.cta-section p {
    font-size: 18px;
    color: #2d3748;
}

.process-section {
    background: #2c5282;
    color: white;
    padding: 80px 24px;
}

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

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 240px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 64px;
    height: 64px;
    line-height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.step p {
    font-size: 15px;
    opacity: 0.9;
}

.form-section {
    background: #f7fafc;
    padding: 80px 24px;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-wrapper h2 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 12px;
}

.form-wrapper > p {
    color: #718096;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    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: #2c5282;
}

.submit-btn {
    width: 100%;
    background: #2c5282;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #1a365d;
}

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

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

.trust-points {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid #2c5282;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.trust-item p {
    font-size: 16px;
    color: #2d3748;
    font-style: italic;
    margin-bottom: 16px;
}

.trust-item span {
    font-size: 14px;
    color: #718096;
    font-style: normal;
}

.main-footer {
    background: #1a202c;
    color: #e2e8f0;
    padding: 56px 24px 32px;
}

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

.footer-section {
    flex: 1;
    min-width: 240px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: white;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.8;
}

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

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

.footer-section ul li a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.disclaimer {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3748;
    color: white;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

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

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

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background: #48bb78;
    color: white;
}

.cookie-btn.accept:hover {
    background: #38a169;
}

.cookie-btn.reject {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.reject:hover {
    border-color: white;
}

.about-hero {
    background: #2c5282;
    color: white;
    padding: 80px 24px;
    text-align: center;
}

.about-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.about-header p {
    font-size: 20px;
    opacity: 0.9;
}

.about-content {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
}

.content-block {
    display: flex;
    gap: 56px;
    margin-bottom: 80px;
    align-items: center;
}

.content-block.reverse {
    flex-direction: row-reverse;
}

.content-block img {
    flex: 1;
    max-width: 500px;
    border-radius: 12px;
    object-fit: cover;
    background: #e2e8f0;
}

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 20px;
}

.content-text p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.8;
}

.values-section {
    background: #f7fafc;
    padding: 64px 32px;
    border-radius: 12px;
    margin-bottom: 80px;
}

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

.values-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 240px;
    background: white;
    padding: 28px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 20px;
    color: #2c5282;
    margin-bottom: 12px;
}

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

.experience-section {
    margin-bottom: 64px;
}

.experience-section h2 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 20px;
}

.experience-section p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 16px;
}

.cta-bottom {
    text-align: center;
    background: #edf2f7;
    padding: 56px 24px;
    border-radius: 12px;
}

.cta-bottom h2 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 16px;
}

.cta-bottom p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
}

.services-hero {
    background: #2c5282;
    color: white;
    padding: 80px 24px;
    text-align: center;
}

.services-hero h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.services-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.detailed-services {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
}

.service-detail-card {
    display: flex;
    gap: 48px;
    margin-bottom: 64px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    max-width: 450px;
}

.service-visual img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    background: #e2e8f0;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 28px;
    color: #1a202c;
    margin-bottom: 16px;
}

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

.pricing-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0 12px;
}

.price-label {
    font-size: 16px;
    color: #718096;
    font-weight: 600;
}

.price-amount {
    font-size: 24px;
    color: #2c5282;
    font-weight: 700;
}

.turnaround {
    font-size: 14px;
    color: #718096;
    font-style: italic;
}

.additional-info {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.info-box {
    flex: 1;
    min-width: 280px;
    background: #f7fafc;
    padding: 32px;
    border-radius: 12px;
    border-top: 4px solid #2c5282;
}

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

.info-box p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
}

.cta-services {
    text-align: center;
    background: #2c5282;
    color: white;
    padding: 64px 24px;
    border-radius: 12px;
    max-width: 1200px;
    margin: 80px auto;
}

.cta-services h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-services p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.contact-hero {
    background: #2c5282;
    color: white;
    padding: 80px 24px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.contact-content {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
}

.contact-layout {
    display: flex;
    gap: 56px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 32px;
}

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

.contact-item h3 {
    font-size: 20px;
    color: #2c5282;
    margin-bottom: 12px;
}

.contact-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
}

.note {
    font-size: 14px;
    color: #718096;
    font-style: italic;
    margin-top: 8px;
}

.contact-image {
    flex: 1;
    max-width: 500px;
}

.contact-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    background: #e2e8f0;
}

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

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

.faq-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
    font-size: 18px;
    color: #1a202c;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
}

.cta-contact {
    text-align: center;
    background: #edf2f7;
    padding: 56px 24px;
    border-radius: 12px;
}

.cta-contact h2 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 16px;
}

.cta-contact p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: white;
    padding: 64px 48px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.thanks-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: #48bb78;
    color: white;
    border-radius: 50%;
    font-size: 48px;
    margin-bottom: 24px;
}

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

.thanks-message {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 48px;
}

.thanks-info h2 {
    font-size: 24px;
    color: #1a202c;
    margin-bottom: 32px;
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.step-item .step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #2c5282;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item p {
    flex: 1;
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
    margin-top: 8px;
}

.thanks-note {
    background: #fff3cd;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.thanks-note p {
    font-size: 14px;
    color: #856404;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-primary {
    display: inline-block;
    background: #2c5282;
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #2c5282;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2c5282;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #2c5282;
    color: white;
}

.legal-page {
    max-width: 900px;
    margin: 64px auto;
    padding: 0 24px;
}

.legal-page h1 {
    font-size: 42px;
    color: #1a202c;
    margin-bottom: 48px;
    text-align: center;
}

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

.legal-content h3 {
    font-size: 20px;
    color: #2c5282;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 32px;
}

.legal-content ul li {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-content a {
    color: #2c5282;
    text-decoration: underline;
}

.last-updated {
    margin-top: 48px;
    font-style: italic;
    color: #718096;
}

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

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

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

    .card-grid {
        flex-direction: column;
    }

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

    .content-block,
    .content-block.reverse {
        flex-direction: column;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
    }

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

    .thanks-actions {
        flex-direction: column;
    }
}