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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 280px;
    margin: 0;
}

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

.cookie-btn {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

.cookie-btn.reject {
    background-color: #95a5a6;
    color: white;
}

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

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 2rem;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.brand {
    font-weight: 700;
    font-size: 1.2rem;
    color: #2c3e50;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background-color: #ecf0f1;
    border-radius: 20px;
}

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

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

.main-nav a:hover {
    color: #27ae60;
}

.hero-visual {
    margin-top: 0;
    width: 100%;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    border-radius: 10px;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.intro-statement {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.statement-wrapper p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #34495e;
}

.visual-content-split {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #f8f9fa;
}

.content-left {
    flex: 1;
    min-width: 320px;
}

.content-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.content-left p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: #34495e;
}

.inline-link {
    color: #27ae60;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #27ae60;
    transition: all 0.3s ease;
}

.inline-link:hover {
    color: #229954;
    border-bottom-color: #229954;
}

.image-right {
    flex: 1;
    min-width: 320px;
    background-color: #ecf0f1;
    border-radius: 10px;
    overflow: hidden;
}

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

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

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

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    max-width: 420px;
    background-color: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #bdc3c7;
}

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

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

.service-card p {
    font-size: 1rem;
    margin: 0 1.5rem 1rem;
    color: #34495e;
    line-height: 1.6;
    flex-grow: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin: 0 1.5rem 1rem;
}

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

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

.select-service-btn.selected {
    background-color: #34495e;
}

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-wrapper h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-wrapper > p {
    margin-bottom: 2rem;
    color: #7f8c8d;
}

.form-notice {
    padding: 1rem;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    display: none;
}

.form-notice.show {
    display: block;
}

.form-notice.success {
    background-color: #d4edda;
    border-left-color: #28a745;
}

.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 textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #dfe6e9;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

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

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

.trust-indicators {
    padding: 4rem 2rem;
    background-color: #2c3e50;
    color: white;
}

.indicators-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.indicator {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.indicator strong {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #27ae60;
}

.indicator span {
    display: block;
    font-size: 1.1rem;
    color: #bdc3c7;
}

.site-footer {
    background-color: #34495e;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

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

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

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

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

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

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

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

.footer-section ul li a:hover {
    color: #27ae60;
}

.disclaimer {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #506579;
    text-align: center;
    color: #95a5a6;
}

.page-hero {
    margin-top: 0;
    width: 100%;
}

.page-hero .hero-image-wrapper {
    height: 50vh;
}

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

.about-content,
.legal-container,
.contact-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background-color: white;
}

.about-content h2,
.legal-container h1,
.contact-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-content h3,
.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #34495e;
}

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

.legal-container ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

.legal-container li {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-container a {
    color: #27ae60;
    text-decoration: none;
    border-bottom: 1px solid #27ae60;
}

.legal-container a:hover {
    color: #229954;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.services-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.services-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-intro p {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 800px;
    margin: 0 auto;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.service-detail-image {
    flex: 1;
    min-width: 320px;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    min-width: 320px;
}

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

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

.service-price-detail {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1.5rem 0;
}

.services-cta {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #ecf0f1;
    border-radius: 10px;
    margin-top: 3rem;
}

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #7f8c8d;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

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

.contact-info-block {
    margin: 2rem 0;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
    color: #2c3e50;
}

.info-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #34495e;
}

.contact-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: #e8f5e9;
    border-left: 4px solid #27ae60;
    border-radius: 4px;
}

.contact-note p {
    margin: 0;
    color: #34495e;
}

.contact-note a {
    color: #27ae60;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #27ae60;
}

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

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

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

.return-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background-color: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.return-link:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .floating-nav {
        top: 10px;
        left: 10px;
        right: 10px;
        transform: none;
        border-radius: 10px;
        padding: 1rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .main-nav {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }

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

    .hero-overlay p {
        font-size: 1.1rem;
    }

    .visual-content-split {
        flex-direction: column;
    }

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

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

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