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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.main-header {
    background-color: #1a2332;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #95a5a6;
    padding: 0.3rem 0.8rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.hero-image {
    flex: 1;
    background-color: #e8eaed;
    overflow: hidden;
}

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

.info-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

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

.info-image {
    flex: 1;
    background-color: #dfe4e8;
    overflow: hidden;
}

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

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

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

.info-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

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

.section-header {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.section-header p {
    font-size: 1.1rem;
    color: #5a6c7d;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #dfe4e8;
}

.service-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a2332;
}

.service-card p {
    font-size: 0.95rem;
    margin: 0 1.5rem 1.2rem;
    color: #5a6c7d;
    flex-grow: 1;
}

.service-card .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2980b9;
    margin: 0 1.5rem 1rem;
}

.select-service {
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem 1.5rem;
    background-color: #2980b9;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #1a2332;
}

.form-intro {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #5a6c7d;
}

.order-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.selected-service-display {
    background-color: #d5e8f7;
    padding: 1rem 1.5rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #2980b9;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #dfe4e8;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    width: 100%;
    padding: 1.1rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #f8f9fa;
}

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

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

.trust-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.trust-image {
    flex: 1;
    background-color: #dfe4e8;
    overflow: hidden;
}

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

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #fef5e7;
}

.disclaimer-box {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #ffffff;
    border-left: 5px solid #f39c12;
    border-radius: 5px;
}

.disclaimer-box p {
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.main-footer {
    background-color: #1a2332;
    color: #ecf0f1;
    padding: 3rem 2rem 1.5rem;
}

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

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.2rem;
}

.footer-section p {
    color: #95a5a6;
    font-size: 0.95rem;
}

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

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

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

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2980b9;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.3s ease;
}

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

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.3s ease;
}

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

.cta-inline {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: #2980b9;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.cta-inline:hover {
    background-color: #1f618d;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #27ae60;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #1e8449;
}

.cookie-btn.reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #5d6d7e;
}

.page-hero {
    background-color: #1a2332;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: #bdc3c7;
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.about-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

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

.about-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.about-image {
    flex: 1;
    background-color: #dfe4e8;
    overflow: hidden;
}

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

.values-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

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

.values-image {
    flex: 1;
    background-color: #dfe4e8;
    overflow: hidden;
}

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

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

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

.values-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

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

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a2332;
}

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

.team-member {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a2332;
}

.team-member .role {
    font-size: 0.95rem;
    color: #2980b9;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.process-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #ffffff;
}

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

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

.process-list {
    list-style: none;
    counter-reset: process-counter;
}

.process-list li {
    counter-increment: process-counter;
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
}

.process-list li::before {
    content: counter(process-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background-color: #2980b9;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.process-list li strong {
    display: block;
    margin-bottom: 0.3rem;
    color: #1a2332;
}

.process-image {
    flex: 1;
    background-color: #dfe4e8;
    overflow: hidden;
}

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

.cta-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.cta-section.centered {
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #5a6c7d;
}

.service-detail-split {
    display: flex;
    max-width: 1400px;
    margin: 3rem auto;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #dfe4e8;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #1a2332;
}

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.service-detail-content ul {
    margin: 1.5rem 0 1.5rem 1.5rem;
}

.service-detail-content ul li {
    margin-bottom: 0.7rem;
    color: #5a6c7d;
}

.price-tag {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2980b9;
    margin: 1.5rem 0 1rem;
}

.additional-info {
    padding: 4rem 2rem;
    background-color: #ecf0f1;
}

.additional-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a2332;
}

.info-columns {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.info-column {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.info-column h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.info-column p {
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.pricing-note {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    background-color: #fef5e7;
}

.pricing-note p {
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 3rem auto;
}

.contact-info {
    flex: 1;
    padding: 3rem;
    background-color: #f8f9fa;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a2332;
}

.contact-block {
    margin-bottom: 2rem;
}

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #2980b9;
}

.contact-block p {
    font-size: 1.05rem;
    color: #34495e;
    line-height: 1.8;
}

.contact-image {
    flex: 1;
    background-color: #dfe4e8;
    overflow: hidden;
}

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

.faq-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a2332;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a2332;
}

.faq-item p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.directions-section {
    padding: 3rem 2rem;
    background-color: #ecf0f1;
    text-align: center;
}

.directions-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.directions-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.thanks-page {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
    min-height: 500px;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
    text-align: center;
}

.thanks-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #34495e;
    line-height: 1.8;
}

.confirmation-details {
    background-color: #d5e8f7;
    padding: 1.5rem;
    border-radius: 5px;
    margin: 2rem 0;
    border-left: 4px solid #2980b9;
}

.next-steps {
    margin: 2.5rem 0;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.next-steps ol {
    margin-left: 1.5rem;
}

.next-steps ol li {
    margin-bottom: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

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

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #1a2332;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2980b9;
}

.legal-page p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #34495e;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.legal-page ul li,
.legal-page ol li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
    color: #5a6c7d;
}

.legal-page a {
    color: #2980b9;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.legal-page a:hover {
    border-bottom-color: #2980b9;
}

@media (max-width: 968px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .hero-split,
    .info-split,
    .trust-split,
    .about-split,
    .values-split,
    .process-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-content,
    .info-content,
    .trust-content,
    .about-content,
    .values-content,
    .process-content,
    .service-detail-content,
    .contact-info {
        padding: 2.5rem 1.5rem;
    }

    .hero-image,
    .info-image,
    .trust-image,
    .about-image,
    .values-image,
    .process-image,
    .service-detail-image,
    .contact-image {
        min-height: 300px;
    }

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

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

    .team-member {
        flex: 1 1 100%;
    }

    .info-column {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}

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

    .section-header h2 {
        font-size: 2rem;
    }

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

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

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