* {
    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: #2d3748;
    overflow-x: hidden;
}

.ad-disclosure {
    background-color: #fef5e7;
    color: #7d6608;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #f4d03f;
}

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

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a365d;
}

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

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

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

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

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

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

.hero-content p {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2b6cb0;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.btn-primary:hover {
    background-color: #2c5282;
    cursor: pointer;
}

.intro-split {
    display: flex;
    align-items: center;
}

.intro-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    height: 500px;
}

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

.intro-content {
    flex: 1;
    padding: 80px 60px;
}

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

.intro-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 16px;
}

.services-preview {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

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

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

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

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: #f7fafc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
}

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

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

.price {
    font-size: 22px;
    font-weight: 700;
    color: #2b6cb0;
    margin: 0 24px 24px;
}

.value-split {
    display: flex;
    align-items: center;
    background-color: #edf2f7;
}

.value-content {
    flex: 1;
    padding: 80px 60px;
}

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

.value-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 24px;
}

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

.value-list li {
    font-size: 17px;
    color: #2d3748;
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
}

.value-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2b6cb0;
    font-weight: 700;
    font-size: 20px;
}

.value-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    height: 600px;
}

.value-image img {
    width: 100%;
    height: 100%;
}

.form-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 20px;
}

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

.trust-elements {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trust-item strong {
    display: block;
    font-size: 18px;
    color: #1a202c;
    margin-bottom: 4px;
}

.trust-item p {
    font-size: 15px;
    color: #718096;
    margin: 0;
}

.form-wrapper {
    flex: 1;
}

.contact-form {
    background-color: #f7fafc;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    background-color: #ffffff;
    transition: border-color 0.3s;
}

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

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

.btn-submit:hover {
    background-color: #2c5282;
    cursor: pointer;
}

.footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 60px 40px 20px;
}

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

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

.footer-col p {
    font-size: 14px;
    color: #a0aec0;
    line-height: 1.6;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: #2d3748;
    border-radius: 6px;
    font-size: 13px;
    color: #cbd5e0;
    line-height: 1.6;
}

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

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.btn-accept:hover {
    background-color: #2c5282;
    cursor: pointer;
}

.btn-reject {
    background-color: #4a5568;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #2d3748;
    cursor: pointer;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .value-split,
    .form-container-split {
        flex-direction: column;
    }

    .hero-content,
    .intro-content,
    .value-content {
        padding: 60px 40px;
    }

    .hero-image,
    .intro-image,
    .value-image {
        height: 400px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-menu {
        gap: 20px;
        font-size: 14px;
    }

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

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

.about-hero {
    padding: 100px 40px;
    background-color: #f7fafc;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h1 {
    font-size: 44px;
    color: #1a202c;
    margin-bottom: 24px;
}

.about-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 20px;
}

.about-split {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 40px;
}

.about-split-content {
    flex: 1;
}

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

.about-split-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 16px;
}

.about-split-image {
    flex: 1;
    height: 450px;
    overflow: hidden;
    border-radius: 8px;
}

.about-split-image img {
    width: 100%;
    height: 100%;
}

.services-detail {
    padding: 100px 40px;
    background-color: #ffffff;
}

.services-header {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-header h1 {
    font-size: 44px;
    color: #1a202c;
    margin-bottom: 20px;
}

.services-header p {
    font-size: 18px;
    color: #4a5568;
}

.service-item {
    max-width: 1100px;
    margin: 0 auto 60px;
    display: flex;
    gap: 50px;
    align-items: center;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-item-content {
    flex: 1;
}

.service-item-content h3 {
    font-size: 28px;
    color: #1a202c;
    margin-bottom: 16px;
}

.service-item-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
}

.service-item-content .price {
    font-size: 24px;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 0;
}

.service-item-image {
    flex: 1;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
}

.service-item-image img {
    width: 100%;
    height: 100%;
}

.contact-page {
    padding: 100px 40px;
    background-color: #f7fafc;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 44px;
    color: #1a202c;
    margin-bottom: 24px;
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail-item h3 {
    font-size: 18px;
    color: #1a202c;
    margin-bottom: 8px;
}

.contact-detail-item p {
    font-size: 16px;
    color: #4a5568;
    margin: 0;
}

.contact-map {
    flex: 1;
    height: 500px;
    background-color: #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #718096;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background-color: #f7fafc;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
}

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

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

.legal-page {
    padding: 100px 40px;
    background-color: #ffffff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 40px;
    color: #1a202c;
    margin-bottom: 32px;
}

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

.legal-content h3 {
    font-size: 22px;
    color: #2d3748;
    margin-top: 28px;
    margin-bottom: 12px;
}

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

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

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