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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

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

.btn-accept:hover {
    background-color: #e67e22;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.ad-label {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #ecf0f1;
    border-radius: 4px;
}

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

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 60px;
    align-items: center;
}

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 32px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #f39c12;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #e67e22;
}

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

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

.intro-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    gap: 60px;
    align-items: center;
    background-color: #f8f9fa;
}

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

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

.intro-right {
    flex: 1;
}

.intro-right h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.intro-right p {
    font-size: 16px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 16px;
}

.services-showcase {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.services-showcase h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.service-card {
    flex: 0 1 calc(33.333% - 20px);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.service-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #ecf0f1;
}

.service-card h3 {
    font-size: 22px;
    padding: 20px 20px 12px 20px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #546e7a;
    margin-bottom: 16px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #f39c12;
    padding: 0 20px;
    margin-bottom: 20px;
}

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

.btn-select:hover {
    background-color: #34495e;
}

.form-section {
    background-color: #ecf0f1;
    padding: 80px 40px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.form-intro {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 32px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 16px;
}

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

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

.btn-submit:hover {
    background-color: #e67e22;
}

.benefits-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 60px;
    align-items: center;
}

.benefits-content {
    flex: 1;
}

.benefits-content h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #2c3e50;
}

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

.benefits-list li {
    padding: 16px 0 16px 40px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #546e7a;
    border-bottom: 1px solid #ecf0f1;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f39c12;
    font-size: 24px;
    font-weight: 700;
}

.benefits-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 20px 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

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

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

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px auto;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.6;
}

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

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 48px;
    color: #27ae60;
    margin-bottom: 24px;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 16px;
}

.thanks-container .service-selected {
    font-weight: 700;
    color: #f39c12;
}

.thanks-container a {
    display: inline-block;
    margin-top: 32px;
    padding: 16px 40px;
    background-color: #f39c12;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.thanks-container a:hover {
    background-color: #e67e22;
}

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

    .nav-container {
        flex-wrap: wrap;
        height: auto;
        padding: 20px;
    }

    .nav-menu {
        width: 100%;
        justify-content: center;
        margin-top: 16px;
    }

    .service-card {
        flex: 0 1 100%;
    }

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

    .hero-left h1 {
        font-size: 36px;
    }
}