:root {
    --color-primary: #1a365d;
    --color-secondary: #2b6cb0;
    --color-accent: #3182ce;
    --color-dark: #1a202c;
    --color-light: #f7fafc;
    --color-gray: #718096;
    --color-border: #e2e8f0;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--color-dark);
    background-color: #fff;
}

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

a {
    color: var(--color-secondary);
    text-decoration: none;
}

a:hover {
    color: var(--color-primary);
}

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

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.ad-disclosure {
    background-color: var(--color-light);
    color: var(--color-gray);
    font-size: 0.75rem;
    text-align: center;
    padding: 0.25rem;
    border-bottom: 1px solid var(--color-border);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--color-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}

.nav-links a:hover {
    border-bottom-color: var(--color-accent);
    color: var(--color-dark);
}

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

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

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

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

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

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

.cta-button {
    display: inline-block;
    background-color: var(--color-accent);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.2s;
    align-self: flex-start;
}

.cta-button:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.intro-section {
    padding: 5rem 2rem;
    text-align: center;
    background-color: #fff;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.intro-content p {
    font-size: 1.125rem;
    color: var(--color-gray);
}

.features-split {
    display: flex;
    background-color: var(--color-light);
}

.feature-image-wrapper {
    flex: 1;
    min-height: 400px;
}

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

.feature-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.feature-content p {
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

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

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-dark);
}

.feature-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

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

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

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

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: #fff;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.service-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

.card-content {
    padding: 1.5rem;
}

.card-content h4 {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.card-content p {
    color: var(--color-gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

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

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-link {
    font-weight: 600;
    color: var(--color-accent);
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 0.25rem;
}

.cta-link:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

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

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

.testimonial p {
    font-size: 1.5rem;
    color: #fff;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.testimonial cite {
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
}

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

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

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

.cta-content p {
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.cta-button-alt {
    display: inline-block;
    background-color: var(--color-primary);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.cta-button-alt:hover {
    background-color: var(--color-dark);
    color: #fff;
}

.site-footer {
    background-color: var(--color-dark);
    color: #fff;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 2;
    min-width: 250px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
}

.footer-links,
.footer-contact {
    flex: 1;
    min-width: 150px;
}

.footer-links h5,
.footer-contact h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #fff;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.email-display {
    color: rgba(255, 255, 255, 0.7);
}

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

.disclaimer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

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

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

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

.cookie-content p {
    color: rgba(255, 255, 255, 0.9);
    flex: 1;
    min-width: 300px;
}

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

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

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

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

.cookie-btn.accept:hover {
    background-color: var(--color-secondary);
}

.cookie-btn.reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

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

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

.page-header p {
    color: rgba(255, 255, 255, 0.8);
}

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

.page-content h2 {
    color: var(--color-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(--color-gray);
    margin-bottom: 1rem;
}

.page-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    color: var(--color-gray);
}

.page-content li {
    margin-bottom: 0.5rem;
}

.services-page {
    padding: 4rem 2rem;
    background-color: var(--color-light);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background-color: #fff;
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    border: 1px solid var(--color-border);
}

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

.service-image {
    flex: 0 0 40%;
    min-height: 300px;
}

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

.service-details {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.service-details p {
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.25rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: var(--color-dark);
    font-size: 0.95rem;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

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

.about-split {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    margin-top: 0;
}

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

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

.values-section {
    background-color: var(--color-light);
    padding: 4rem 2rem;
    margin: 0 -2rem;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 2rem;
}

.value-item h4 {
    color: var(--color-primary);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.value-item p {
    color: var(--color-gray);
    margin-bottom: 0;
}

.contact-page {
    padding: 4rem 2rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

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

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

.contact-info p {
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.contact-details {
    background-color: var(--color-light);
    padding: 2rem;
    border-radius: 8px;
}

.contact-details h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.contact-details address {
    font-style: normal;
    color: var(--color-gray);
    line-height: 2;
}

.contact-form-section {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    background-color: #fff;
    padding: 2.5rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
}

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

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

.form-group label {
    display: block;
    color: var(--color-dark);
    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(--color-border);
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color 0.2s;
}

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

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

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--color-accent);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.submit-btn:hover {
    background-color: var(--color-primary);
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: var(--color-light);
}

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

.thanks-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

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

.thanks-content p {
    color: var(--color-gray);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.thanks-service {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 1px solid var(--color-border);
}

.thanks-service strong {
    color: var(--color-primary);
}

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

    .hero-content {
        padding: 3rem 1.5rem;
    }

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

    .features-split {
        flex-direction: column;
    }

    .feature-content {
        padding: 2.5rem 1.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
    }

    .service-image {
        min-height: 200px;
    }

    .about-split {
        flex-direction: column;
    }

    .contact-container {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }

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