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

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

.main-nav {
    background-color: #1a1a1a;
    padding: 1rem 2rem;
    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;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left .logo {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

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

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

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

.nav-right .ad-label {
    color: #95a5a6;
    font-size: 0.75rem;
    font-style: italic;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #ecf0f1;
}

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

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

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

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

.cta-button {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: flex-start;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #2980b9;
}

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

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-text p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #555;
}

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

.intro-image img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 8px;
}

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

.services-preview h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-card.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

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

.service-info h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-info p {
    margin-bottom: 1.5rem;
    color: #555;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1.5rem;
}

.select-service {
    background-color: #27ae60;
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #ffffff;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    opacity: 0.9;
}

.contact-form {
    background-color: #34495e;
    padding: 2.5rem;
    border-radius: 8px;
}

.selected-service-display {
    background-color: #27ae60;
    color: #ffffff;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #7f8c8d;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #ffffff;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    width: 100%;
    background-color: #3498db;
    color: #ffffff;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #2980b9;
}

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

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

.trust-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.trust-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.trust-image {
    margin-top: 2rem;
    background-color: #ecf0f1;
}

.trust-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #3498db;
}

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

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

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

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

.footer-section p {
    color: #bdc3c7;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #2c3e50;
    border-radius: 5px;
    font-size: 0.85rem;
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #34495e;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.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: 2000;
    display: none;
}

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

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

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

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

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

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

.cookie-accept:hover {
    background-color: #229954;
}

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

.cookie-reject:hover {
    background-color: #6c7a89;
}

.cookie-link {
    color: #3498db;
    text-decoration: none;
}

.cookie-link:hover {
    text-decoration: underline;
}

.page-header {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

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

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.about-content {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.about-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #555;
}

.about-image {
    flex: 1;
    background-color: #ecf0f1;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 8px;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.value-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #3498db;
}

.value-item p {
    color: #555;
}

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

.experience-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.experience-text {
    flex: 1;
}

.experience-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.experience-text p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #555;
}

.experience-image {
    flex: 1;
    background-color: #ecf0f1;
}

.experience-image img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 8px;
}

.cta-section {
    padding: 4rem 2rem;
    background-color: #3498db;
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-section .cta-button {
    background-color: #ffffff;
    color: #3498db;
}

.cta-section .cta-button:hover {
    background-color: #ecf0f1;
}

.services-detail {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

.service-detail-card {
    max-width: 1400px;
    margin: 0 auto 3rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-split {
    display: flex;
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
}

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

.service-price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    margin-bottom: 1rem;
    color: #555;
}

.service-includes {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-includes li {
    margin-bottom: 0.5rem;
    color: #555;
}

.service-detail-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.contact-page {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

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

.contact-info-section {
    flex: 1;
}

.contact-info-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #3498db;
}

.contact-item p {
    color: #555;
    line-height: 1.8;
}

.emergency-note {
    margin-top: 1rem;
    font-style: italic;
    color: #27ae60;
}

.contact-image-section {
    flex: 1;
    background-color: #ecf0f1;
}

.contact-image-section img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 8px;
}

.info-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.info-content h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.steps-grid {
    display: flex;
    gap: 2rem;
}

.step-item {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.step-item p {
    color: #555;
}

.thanks-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
    min-height: 60vh;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.confirmation-details {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.service-confirmation h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.service-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
}

.next-steps {
    text-align: left;
    background-color: #ecf0f1;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.next-steps ul {
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 0.8rem;
    color: #555;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.secondary-button {
    display: inline-block;
    background-color: #7f8c8d;
    color: #ffffff;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.secondary-button:hover {
    background-color: #6c7a89;
}

.legal-page {
    padding: 3rem 2rem;
    background-color: #ffffff;
    min-height: 60vh;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-intro {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-container h2 {
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #3498db;
}

.legal-container p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

.legal-container ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-container li {
    margin-bottom: 0.5rem;
    color: #555;
}

.legal-container a {
    color: #3498db;
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

.legal-date {
    margin-top: 3rem;
    font-style: italic;
    color: #7f8c8d;
}

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

    .hero-split,
    .intro-split,
    .about-split,
    .experience-split,
    .service-card,
    .service-detail-split,
    .contact-layout {
        flex-direction: column;
    }

    .service-card.reverse,
    .experience-split.reverse {
        flex-direction: column;
    }

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

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

    .values-grid,
    .steps-grid {
        flex-direction: column;
    }

    .value-item {
        flex: 1 1 100%;
    }

    .thanks-actions {
        flex-direction: column;
    }
}