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

:root {
    --primary: #1a365d;
    --secondary: #2c5282;
    --accent: #ed8936;
    --text: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-alt: #edf2f7;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.site-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--bg-alt);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

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

.main-nav a {
    color: var(--text);
    font-weight: 500;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: var(--accent);
}

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    background-color: var(--bg-alt);
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
}

.hero-split {
    display: flex;
    min-height: 70vh;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: var(--bg-light);
}

.hero-content h1 {
    font-size: 2.75rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--accent);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.2s;
}

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

.cta-secondary {
    display: inline-block;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.875rem 1.75rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.2s;
}

.cta-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
}

.intro-section {
    padding: 5rem 2rem;
    background-color: var(--white);
}

.intro-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-wrapper h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.intro-wrapper p {
    color: var(--text-light);
    font-size: 1.125rem;
}

.features-split {
    display: flex;
    min-height: 50vh;
}

.features-split.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: var(--bg-alt);
}

.features-split.reverse .feature-content {
    background-color: var(--bg-light);
}

.feature-content h3 {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-content p {
    color: var(--text-light);
    font-size: 1.0625rem;
}

.services-preview {
    padding: 5rem 2rem;
    background-color: var(--white);
}

.services-preview-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services-preview-inner h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 3rem;
}

.service-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
    transition: transform 0.2s;
}

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

.card-image {
    height: 180px;
    overflow: hidden;
}

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

.service-card h4 {
    font-size: 1.25rem;
    color: var(--primary);
    padding: 1.5rem 1.5rem 0.5rem;
}

.service-card p {
    color: var(--text-light);
    padding: 0 1.5rem;
    font-size: 0.9375rem;
}

.service-card .price {
    display: block;
    padding: 1rem 1.5rem 1.5rem;
    font-weight: 700;
    color: var(--accent);
    font-size: 1rem;
}

.trust-section {
    padding: 5rem 2rem;
    background-color: var(--primary);
    color: var(--white);
}

.trust-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.trust-inner h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
}

.trust-label {
    font-size: 1rem;
    opacity: 0.9;
}

.cta-section {
    padding: 5rem 2rem;
    background-color: var(--bg-alt);
    text-align: center;
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.cta-inner h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.cta-inner p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.0625rem;
}

.site-footer {
    background-color: var(--primary);
    color: var(--white);
    padding-top: 4rem;
}

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

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

.footer-col h5 {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: var(--accent);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    line-height: 1.8;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: var(--accent);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-bottom .disclaimer {
    margin-top: 1rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary);
    color: var(--white);
    padding: 1.5rem 2rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 0.9375rem;
}

.cookie-content a {
    color: var(--accent);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.cookie-btn.accept {
    background-color: var(--accent);
    color: var(--white);
}

.cookie-btn.reject {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.page-header {
    background-color: var(--primary);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    opacity: 0.8;
    font-size: 1.0625rem;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-content h2 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content p {
    color: var(--text);
    margin-bottom: 1rem;
}

.page-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    list-style: disc;
}

.page-content ul li {
    color: var(--text);
    margin-bottom: 0.5rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-item {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 300px;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.service-item-image {
    height: 200px;
    overflow: hidden;
}

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

.service-item-content {
    padding: 1.5rem;
}

.service-item h3 {
    color: var(--primary);
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
}

.service-item p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.service-item .service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
}

.about-split {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    color: var(--text);
    margin-bottom: 1.25rem;
}

.about-image {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-alt);
    border-radius: 8px;
    overflow: hidden;
}

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

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.value-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.value-item p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.contact-wrapper {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 280px;
}

.contact-info h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.contact-detail {
    margin-bottom: 1.5rem;
}

.contact-detail h4 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-detail p {
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-form-wrapper {
    flex: 1.5;
    min-width: 320px;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.contact-form h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--bg-alt);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    background-color: var(--accent);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.form-submit:hover {
    background-color: #dd6b20;
}

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

.thanks-wrapper h1 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thanks-wrapper p {
    color: var(--text-light);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.legal-content h1 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.legal-content h2 {
    color: var(--primary);
    font-size: 1.375rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    color: var(--text);
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    list-style: disc;
}

.legal-content ul li {
    color: var(--text);
    margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
    .hero-split,
    .features-split,
    .features-split.reverse {
        flex-direction: column;
    }

    .hero-content,
    .feature-content {
        padding: 3rem 2rem;
    }

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

    .hero-image,
    .feature-image {
        min-height: 300px;
    }

    .header-inner {
        justify-content: center;
        text-align: center;
    }

    .main-nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .trust-items {
        gap: 2rem;
    }

    .service-card {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }

    .main-nav ul {
        gap: 0.75rem;
        font-size: 0.875rem;
    }

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