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

.navbar {
    background-color: #1a1a2e;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffffff;
}

.ad-notice {
    background-color: #f39c12;
    color: #1a1a2e;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.hero-split {
    display: flex;
    min-height: 80vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 4rem;
    background-color: #16213e;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

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

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

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

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

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

.intro-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.intro-image {
    flex: 1;
    background-color: #bdc3c7;
}

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

.intro-text {
    flex: 1;
    padding: 2rem;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.intro-text p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

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

.problem-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.problem-text {
    flex: 1;
    padding: 2rem;
}

.problem-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #16213e;
}

.problem-text p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.text-link {
    display: inline-block;
    color: #f39c12;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: color 0.3s;
}

.text-link:hover {
    color: #e67e22;
}

.problem-image {
    flex: 1;
    background-color: #34495e;
}

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

.services-preview {
    padding: 5rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.services-header {
    max-width: 1200px;
    margin: 0 auto 3rem;
    text-align: center;
}

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.2rem;
    color: #ecf0f1;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: #34495e;
    padding: 2.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #f39c12;
}

.service-card p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.service-select {
    background-color: #f39c12;
    color: #1a1a2e;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 1rem;
}

.service-select:hover {
    background-color: #e67e22;
}

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

.trust-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.trust-image {
    flex: 1;
    background-color: #95a5a6;
}

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

.trust-content {
    flex: 1;
    padding: 2rem;
}

.trust-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.trust-content p {
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

blockquote {
    border-left: 4px solid #f39c12;
    padding-left: 1.5rem;
    font-style: italic;
    color: #555;
    margin: 2rem 0;
}

blockquote cite {
    display: block;
    margin-top: 0.5rem;
    font-style: normal;
    font-weight: 600;
    color: #2c3e50;
}

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

.insight-content {
    max-width: 1200px;
    margin: 0 auto;
}

.insight-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #16213e;
}

.insight-split {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.insight-left {
    flex: 1;
    background-color: #7f8c8d;
}

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

.insight-right {
    flex: 1;
}

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

.insight-list li {
    margin-bottom: 1.8rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.insight-list strong {
    color: #f39c12;
    display: block;
    margin-bottom: 0.3rem;
}

.cta-section {
    padding: 5rem 2rem;
    background-color: #16213e;
    color: #ffffff;
}

.cta-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.cta-text p {
    font-size: 1.1rem;
    color: #ecf0f1;
}

.cta-form-preview {
    flex: 1;
    background-color: #2c3e50;
    padding: 3rem;
    border-radius: 8px;
}

.cta-note {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #f39c12;
    padding: 1rem 2rem;
    text-decoration: none;
    border: 2px solid #f39c12;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #f39c12;
    color: #1a1a2e;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 3rem;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: #7f8c8d;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #2c3e50;
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.selected-service-display {
    background-color: #ecf0f1;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.modal-content form {
    display: flex;
    flex-direction: column;
}

.modal-content label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.modal-content input,
.modal-content textarea {
    margin-bottom: 1.5rem;
    padding: 0.8rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
}

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

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

.footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    color: #f39c12;
    margin-bottom: 1rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #2c3e50;
    border-radius: 6px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #2c3e50;
    text-align: center;
    font-size: 0.9rem;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 3000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

.btn-reject:hover {
    background-color: #2c3e50;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .problem-split,
    .trust-split,
    .insight-split,
    .cta-split {
        flex-direction: column;
    }

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

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

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
}