* {
    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: #333;
    background: #ffffff;
}

.container-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
}

.ad-notice {
    font-size: 12px;
    color: #666;
    padding: 4px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 0 auto;
}

.main-nav {
    display: flex;
    gap: 30px;
}

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

.main-nav a:hover {
    color: #2563eb;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-left p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-right {
    flex: 1;
    background: #f8fafc;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: white;
    color: #1e40af;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.intro-split {
    display: flex;
    min-height: 500px;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8fafc;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1e293b;
}

.intro-text p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #475569;
}

.intro-image {
    flex: 1;
    background: #e2e8f0;
    overflow: hidden;
}

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

.services-grid {
    padding: 100px 60px;
    background: white;
}

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

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1e293b;
}

.section-header-center p {
    font-size: 20px;
    color: #64748b;
}

.service-cards {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    flex: 1;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-card.featured {
    border-color: #2563eb;
    border-width: 3px;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #f1f5f9;
}

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    color: #1e293b;
}

.service-card p {
    margin: 0 24px 16px;
    color: #64748b;
    font-size: 16px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
    margin: 0 24px 20px;
}

.features {
    list-style: none;
    margin: 0 24px 24px;
    flex-grow: 1;
}

.features li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
}

.features li:before {
    content: "✓ ";
    color: #10b981;
    font-weight: bold;
    margin-right: 8px;
}

.btn-select {
    margin: 0 24px 24px;
    padding: 14px 28px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #1e40af;
}

.form-split {
    display: flex;
    min-height: 700px;
}

.form-left {
    flex: 1;
    padding: 80px 60px;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1e293b;
}

.form-left p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #475569;
}

.form-left img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    object-fit: cover;
    background-color: #e2e8f0;
}

.form-right {
    flex: 1;
    padding: 80px 60px;
    background: white;
    display: flex;
    align-items: center;
}

.main-form {
    width: 100%;
    max-width: 500px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.trust-split {
    display: flex;
    min-height: 500px;
    background: #1e293b;
}

.trust-split.reverse {
    flex-direction: row-reverse;
}

.trust-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.trust-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.trust-text p {
    font-size: 18px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.trust-image {
    flex: 1;
    background: #0f172a;
    overflow: hidden;
}

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

.disclaimer-section {
    padding: 60px;
    background: #fef3c7;
}

.disclaimer-box {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
}

.disclaimer-box h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #92400e;
}

.disclaimer-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #78350f;
}

.main-footer {
    background: #0f172a;
    color: white;
    padding: 60px 60px 20px;
}

.footer-content {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-col p {
    color: #94a3b8;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    display: none;
}

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

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

.cookie-content p {
    color: white;
    margin: 0;
    flex: 1;
}

.cookie-actions {
    display: flex;
    gap: 16px;
}

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-accept {
    background: #10b981;
    color: white;
}

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.thanks-container {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
}

.thanks-box {
    background: white;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    max-width: 600px;
}

.thanks-box h1 {
    font-size: 42px;
    color: #1e293b;
    margin-bottom: 20px;
}

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

.thanks-box .btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.thanks-box .btn-home:hover {
    background: #1e40af;
}

.about-header {
    padding: 100px 60px;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: white;
    text-align: center;
}

.about-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-header p {
    font-size: 22px;
    opacity: 0.95;
}

.about-split {
    display: flex;
    min-height: 500px;
}

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

.about-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1e293b;
}

.about-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #475569;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    background: #e2e8f0;
    overflow: hidden;
}

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

.values-section {
    padding: 100px 60px;
    background: #f8fafc;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1e293b;
}

.values-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1;
    padding: 40px;
    background: white;
    border-radius: 12px;
    border-top: 4px solid #2563eb;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1e293b;
}

.value-item p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
}

.services-header {
    padding: 100px 60px;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: white;
    text-align: center;
}

.services-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.services-header p {
    font-size: 22px;
    opacity: 0.95;
}

.services-detail {
    padding: 100px 60px;
    background: white;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-detail-content {
    flex: 1.5;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1e293b;
}

.service-detail-content .price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 24px;
}

.service-detail-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #475569;
    line-height: 1.7;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-detail-content ul li {
    padding: 10px 0;
    font-size: 17px;
    color: #334155;
}

.service-detail-content ul li:before {
    content: "✓ ";
    color: #10b981;
    font-weight: bold;
    margin-right: 10px;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    background-color: #f1f5f9;
}

.contact-header {
    padding: 100px 60px;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: white;
    text-align: center;
}

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-header p {
    font-size: 22px;
    opacity: 0.95;
}

.contact-split {
    display: flex;
    min-height: 500px;
}

.contact-info {
    flex: 1;
    padding: 80px 60px;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1e293b;
}

.info-item {
    margin-bottom: 32px;
}

.info-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e293b;
}

.info-item p {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    background: #e2e8f0;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.legal-page {
    padding: 80px 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1e293b;
}

.legal-page .last-updated {
    color: #64748b;
    margin-bottom: 40px;
    font-size: 16px;
}

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #334155;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 16px;
}

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

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

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .form-split,
    .trust-split,
    .about-split,
    .contact-split,
    .service-detail-card {
        flex-direction: column;
    }

    .service-cards,
    .values-grid,
    .footer-content {
        flex-direction: column;
    }

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

    .main-nav {
        flex-wrap: wrap;
        gap: 15px;
    }
}