* {
    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: #fff;
}

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

.navbar {
    background: #1a1a1a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #f4a261;
}

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

.hero-content {
    flex: 1;
    background: #2a9d8f;
    color: #fff;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    line-height: 1.7;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background: #f4a261;
    color: #1a1a1a;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 4px;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #e76f51;
}

.hero-image {
    flex: 1;
    background: #264653;
    overflow: hidden;
}

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

.intro-section {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 60px;
}

.intro-left {
    flex: 1;
    background: #e9ecef;
}

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

.intro-right {
    flex: 1;
    padding: 40px 20px;
}

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

.intro-right p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.services-highlight {
    background: #f8f9fa;
    padding: 80px 20px;
}

.services-highlight h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.services-intro {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 60px;
}

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

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    width: 340px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 12px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    margin: 0 20px 16px;
    color: #666;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2a9d8f;
    margin: 0 20px 20px;
}

.select-service {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 14px;
    background: #264653;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #1a1a1a;
}

.trust-section {
    padding: 80px 20px;
    background: #264653;
    color: #fff;
}

.trust-content {
    max-width: 1000px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
}

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

.testimonial {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 8px;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.author {
    display: block;
    font-size: 15px;
    color: #f4a261;
    font-weight: 600;
}

.form-section {
    padding: 80px 20px;
    background: #fff;
}

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

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
    color: #1a1a1a;
}

.form-container > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
    color: #666;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2a9d8f;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #2a9d8f;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #264653;
}

.disclaimer-section {
    padding: 40px 20px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.disclaimer-section p {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 20px 20px;
}

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

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

.footer-col p {
    font-size: 15px;
    color: #ccc;
}

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

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

.footer-col ul a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    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: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-accept {
    background: #2a9d8f;
    color: #fff;
}

.btn-accept:hover {
    background: #264653;
}

.btn-reject {
    background: #555;
    color: #fff;
}

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

.thanks-message {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 8px;
}

.thanks-message h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2a9d8f;
}

.thanks-message p {
    font-size: 20px;
    margin-bottom: 16px;
    color: #555;
}

.thanks-message .service-ref {
    font-weight: 600;
    color: #1a1a1a;
}

.thanks-message a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: #264653;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.thanks-message a:hover {
    background: #1a1a1a;
}

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

    .intro-section {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

    .nav-menu {
        gap: 15px;
    }
}