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

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

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.main-nav {
    background-color: #2c3e50;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    padding: 18px 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
    flex-wrap: wrap;
}

.nav-links li a {
    color: #ecf0f1;
    text-decoration: none;
    padding: 18px 16px;
    display: block;
    transition: background-color 0.3s;
}

.nav-links li a:hover {
    background-color: #34495e;
}

.hero-section {
    background-color: #34495e;
    display: flex;
    flex-direction: column;
    min-height: 520px;
}

.hero-content {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
}

.hero-image {
    width: 100%;
    overflow: hidden;
    background-color: #2c3e50;
}

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

.intro-section {
    padding: 70px 20px;
    background-color: #fff;
}

.intro-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.intro-wrapper h2 {
    font-size: 32px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.intro-wrapper p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.services-preview {
    padding: 70px 20px;
    background-color: #ecf0f1;
}

.services-preview h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
}

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

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 22px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 20px;
    font-size: 15px;
    color: #666;
    flex-grow: 1;
}

.service-card .price {
    padding: 15px 20px;
    font-size: 20px;
    font-weight: 700;
    color: #27ae60;
}

.select-service-btn {
    margin: 0 20px 20px;
    padding: 12px 20px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service-btn:hover {
    background-color: #2980b9;
}

.form-section {
    padding: 70px 20px;
    background-color: #fff;
}

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

.form-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
    color: #2c3e50;
}

.form-container > p {
    text-align: center;
    margin-bottom: 35px;
    color: #666;
}

.selected-service-display {
    background-color: #e8f4f8;
    padding: 16px;
    margin-bottom: 25px;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    color: #2c3e50;
}

.selected-service-display.active {
    background-color: #d4edda;
    color: #155724;
}

.form-group {
    margin-bottom: 22px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #27ae60;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.submit-btn:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.trust-section {
    padding: 70px 20px;
    background-color: #34495e;
    color: #fff;
}

.trust-content {
    max-width: 1100px;
    margin: 0 auto;
}

.trust-content h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 45px;
}

.testimonials {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    background-color: #2c3e50;
    padding: 28px;
    border-radius: 8px;
    flex: 1 1 300px;
    max-width: 350px;
}

.testimonial p {
    font-size: 16px;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial .author {
    display: block;
    font-size: 14px;
    color: #bdc3c7;
    font-weight: 600;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.footer-section {
    flex: 1 1 250px;
}

.footer-section h4 {
    margin-bottom: 18px;
    font-size: 18px;
    color: #fff;
}

.footer-section p {
    font-size: 14px;
    color: #bdc3c7;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 25px;
    border-top: 1px solid #34495e;
    text-align: center;
    font-size: 13px;
    color: #95a5a6;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    line-height: 1.5;
    color: #7f8c8d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    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: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

.page-header {
    background-color: #34495e;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 40px;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 18px;
    color: #ecf0f1;
}

.about-content {
    padding: 70px 20px;
    background-color: #fff;
}

.about-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1 1 400px;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-text p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #555;
}

.about-image {
    flex: 1 1 400px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #bdc3c7;
}

.values-section {
    padding: 70px 20px;
    background-color: #ecf0f1;
}

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

.values-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    background-color: #fff;
    padding: 35px;
    border-radius: 8px;
    flex: 1 1 300px;
    max-width: 350px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-card p {
    font-size: 15px;
    color: #666;
}

.team-section {
    padding: 70px 20px;
    background-color: #fff;
}

.team-content {
    max-width: 900px;
    margin: 0 auto;
}

.team-content h2 {
    font-size: 32px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.team-content p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #555;
}

.approach-section {
    padding: 70px 20px;
    background-color: #34495e;
    color: #fff;
}

.approach-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.approach-wrapper h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.approach-steps {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    flex: 1 1 220px;
    max-width: 260px;
    text-align: center;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.step p {
    font-size: 14px;
    color: #ecf0f1;
}

.services-detailed {
    padding: 50px 20px;
    background-color: #fff;
}

.service-detail {
    max-width: 1100px;
    margin: 0 auto 60px;
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

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

.service-detail-content {
    flex: 1 1 450px;
}

.service-detail-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.service-detail-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-detail-content ul li {
    margin-bottom: 10px;
    color: #666;
}

.service-pricing {
    background-color: #e8f4f8;
    padding: 18px;
    border-radius: 5px;
    display: inline-block;
}

.price-label {
    font-size: 14px;
    color: #666;
    margin-right: 10px;
}

.price-value {
    font-size: 26px;
    font-weight: 700;
    color: #27ae60;
}

.service-detail-image {
    flex: 1 1 400px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #bdc3c7;
}

.cta-section {
    padding: 70px 20px;
    background-color: #27ae60;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 18px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #fff;
    color: #27ae60;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s;
}

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

.contact-info-section {
    padding: 70px 20px;
    background-color: #fff;
}

.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1 1 400px;
}

.contact-details h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.email-display {
    color: #3498db;
    font-weight: 600;
}

.contact-image {
    flex: 1 1 400px;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #bdc3c7;
}

.contact-note {
    padding: 70px 20px;
    background-color: #ecf0f1;
}

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

.note-content h2 {
    font-size: 30px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.note-content p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #555;
}

.contact-cta {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 35px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s;
}

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

.thanks-section {
    padding: 100px 20px;
    background-color: #fff;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

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

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-content p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #555;
}

.thanks-details {
    margin-bottom: 35px;
}

.selected-service-info {
    background-color: #e8f4f8;
    padding: 15px;
    border-radius: 5px;
    font-size: 16px;
    color: #2c3e50;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #3498db;
    color: #fff;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary {
    background-color: #95a5a6;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

.next-steps {
    padding: 70px 20px;
    background-color: #ecf0f1;
}

.steps-content {
    max-width: 1100px;
    margin: 0 auto;
}

.steps-content h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 45px;
    color: #2c3e50;
}

.steps-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.step-item {
    background-color: #fff;
    padding: 35px;
    border-radius: 8px;
    flex: 1 1 280px;
    max-width: 340px;
}

.step-num {
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.step-item p {
    font-size: 15px;
    color: #666;
}

.legal-content {
    padding: 60px 20px;
    background-color: #fff;
}

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

.legal-wrapper h2 {
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.legal-wrapper p {
    font-size: 15px;
    margin-bottom: 16px;
    color: #555;
    line-height: 1.7;
}

.legal-wrapper ul {
    margin-bottom: 18px;
    padding-left: 25px;
}

.legal-wrapper ul li {
    margin-bottom: 10px;
    color: #666;
    line-height: 1.6;
}

.update-date {
    margin-top: 40px;
    font-size: 13px;
    color: #95a5a6;
    font-style: italic;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .nav-links {
        width: 100%;
    }

    .nav-links li a {
        padding: 12px 14px;
    }

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

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

    .approach-steps {
        flex-direction: column;
        align-items: center;
    }
}