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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

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

.main-nav a:hover {
    color: #0066cc;
}

.ad-disclosure {
    font-size: 0.85rem;
    color: #666;
    padding: 0.4rem 0.8rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
}

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

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 4rem 4rem 6rem;
    background: #f8f9fa;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-left p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #444;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #0066cc;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    align-self: flex-start;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #0052a3;
}

.hero-right {
    flex: 1;
    background: #d4e4f7;
}

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

.intro-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
}

.services-grid {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.services-grid h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.services-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 1.5rem);
    min-width: 320px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #e0e0e0;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 1.5rem;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.service-card .price {
    padding: 1rem 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: #0066cc;
}

.btn-select {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem;
    background: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #0052a3;
}

.form-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.container-form {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.form-left p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #444;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: #333;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
    font-size: 1.3rem;
}

.form-right {
    flex: 1;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

.form-right form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-right input,
.form-right select,
.form-right textarea {
    padding: 1rem;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background: #ffffff;
}

.form-right input:focus,
.form-right select:focus,
.form-right textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.btn-submit {
    padding: 1rem;
    background: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #0052a3;
}

.trust-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.trust-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.trust-grid {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #0066cc;
}

.trust-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background: #fff4e6;
    border-top: 2px solid #ffb84d;
    border-bottom: 2px solid #ffb84d;
}

.disclaimer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

.container-footer {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column p,
.footer-column a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    line-height: 2;
    font-size: 0.95rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 2px solid #0066cc;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    z-index: 2000;
    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: 2rem;
}

.cookie-content p {
    flex: 1;
    color: #333;
    font-size: 0.95rem;
}

.cookie-content a {
    color: #0066cc;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-accept {
    background: #0066cc;
    color: #ffffff;
}

.btn-accept:hover {
    background: #0052a3;
}

.btn-reject {
    background: #e0e0e0;
    color: #333;
}

.btn-reject:hover {
    background: #d0d0d0;
}

.page-hero {
    background: #f8f9fa;
    padding: 4rem 2rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page-hero p {
    font-size: 1.3rem;
    color: #666;
}

.content-section {
    padding: 4rem 2rem;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.content-section h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #0066cc;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #444;
}

.content-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content-section li {
    margin: 0.7rem 0;
    line-height: 1.7;
    color: #444;
}

.about-split {
    display: flex;
    gap: 3rem;
    padding: 4rem 2rem;
}

.about-left {
    flex: 1;
}

.about-right {
    flex: 1;
    background: #e8f2ff;
}

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

.contact-grid {
    display: flex;
    gap: 3rem;
    padding: 4rem 2rem;
}

.contact-info {
    flex: 1;
}

.contact-map {
    flex: 1;
    background: #e0e0e0;
    min-height: 400px;
    border-radius: 8px;
}

.info-item {
    margin: 2rem 0;
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #0066cc;
}

.info-item p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
}

.thanks-container {
    text-align: center;
    padding: 6rem 2rem;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #0066cc;
}

.thanks-container p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #444;
}

.service-selected {
    background: #f0f8ff;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem auto;
    max-width: 600px;
    border-left: 4px solid #0066cc;
}

@media (max-width: 1024px) {
    .hero-split,
    .container-form,
    .about-split,
    .contact-grid {
        flex-direction: column;
    }

    .hero-left {
        padding: 3rem 2rem;
    }

    .service-card {
        width: calc(50% - 1rem);
    }

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

@media (max-width: 768px) {
    .container-header {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .service-card {
        width: 100%;
    }

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