* {
    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: #f8f9fa;
}

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

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

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

.ad-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    border: 1px solid #bdc3c7;
    padding: 4px 10px;
    border-radius: 4px;
}

.hero-card {
    margin-bottom: 60px;
}

.hero-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    background: rgba(44, 62, 80, 0.75);
    width: 100%;
    padding: 80px 0;
}

.hero-text {
    max-width: 700px;
    color: #ffffff;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.intro-section {
    padding: 60px 0;
}

.intro-card {
    display: flex;
    gap: 40px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.intro-image {
    width: 45%;
    object-fit: cover;
}

.intro-content {
    flex: 1;
    padding: 40px;
}

.intro-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.intro-content p {
    margin-bottom: 15px;
    color: #555;
}

.services-overview {
    padding: 60px 0;
    background-color: #f0f3f5;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

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

.service-info {
    padding: 25px;
}

.service-info h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-info p {
    margin-bottom: 15px;
    color: #666;
    font-size: 0.95rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 15px;
}

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

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

.approach-section {
    padding: 60px 0;
}

.approach-grid {
    display: flex;
    gap: 50px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 1.9rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.approach-text p {
    margin-bottom: 15px;
    color: #555;
}

.approach-visual {
    flex: 1;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.approach-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.cta-form-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

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

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

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.service-display {
    padding: 12px;
    background-color: #f0f3f5;
    border-radius: 5px;
    color: #2c3e50;
    font-weight: 600;
}

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

.submit-btn:hover:not(:disabled) {
    background-color: #229954;
}

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

.disclaimer-section {
    padding: 40px 0;
    background-color: #ecf0f1;
}

.disclaimer-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: #ffffff;
    border-left: 4px solid #e67e22;
    border-radius: 5px;
}

.disclaimer-card p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.7;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-col p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-col a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    font-size: 0.85rem;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 20px;
    display: none;
    z-index: 200;
}

.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;
    margin: 0;
}

.cookie-content a {
    color: #3498db;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

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

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

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

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

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

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    text-align: center;
    color: #ffffff;
}

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

.about-intro {
    padding: 60px 0;
}

.about-card-main {
    display: flex;
    gap: 40px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.about-image {
    width: 45%;
    background-size: cover;
    background-position: center;
}

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

.about-text {
    flex: 1;
    padding: 40px;
}

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

.about-text p {
    margin-bottom: 15px;
    color: #555;
}

.values-section {
    padding: 60px 0;
    background-color: #f0f3f5;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 250px;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.value-card p {
    color: #666;
}

.team-section {
    padding: 60px 0;
}

.process-cards {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.process-card {
    flex: 1 1 calc(25% - 20px);
    min-width: 200px;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.process-number {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 15px;
}

.process-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.process-card p {
    color: #666;
    font-size: 0.9rem;
}

.approach-detail {
    padding: 60px 0;
    background-color: #f0f3f5;
}

.approach-card-reverse {
    display: flex;
    gap: 40px;
    align-items: center;
}

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.approach-content p {
    margin-bottom: 15px;
    color: #555;
}

.approach-image {
    flex: 1;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.services-detail {
    padding: 60px 0;
}

.services-intro-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-intro-card h2 {
    font-size: 1.9rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.services-intro-card p {
    color: #666;
    font-size: 1.1rem;
}

.service-detail-card {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

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

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

.service-detail-content p {
    margin-bottom: 15px;
    color: #555;
}

.service-includes {
    margin: 20px 0;
}

.service-includes h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.service-includes ul {
    list-style-position: inside;
    color: #666;
}

.service-includes li {
    margin-bottom: 6px;
}

.service-pricing {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #ecf0f1;
}

.price-label {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-right: 10px;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
}

.service-detail-image {
    width: 40%;
    background-size: cover;
    background-position: center;
}

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

.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-card-centered {
    text-align: center;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
}

.cta-card-centered h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-card-centered p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.cta-link-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ffffff;
    color: #667eea;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: transform 0.3s;
}

.cta-link-btn:hover {
    transform: scale(1.05);
}

.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: flex;
    gap: 50px;
}

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

.contact-info-card h2 {
    font-size: 1.9rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-info-card > p {
    margin-bottom: 30px;
    color: #666;
}

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

.contact-detail h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.contact-visual {
    flex: 1;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.contact-cta {
    padding: 60px 0;
    background-color: #f0f3f5;
}

.cta-card-simple {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-card-simple h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.cta-card-simple p {
    margin-bottom: 25px;
    color: #666;
}

.thanks-section {
    padding: 100px 0;
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-card h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

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

.thanks-details p {
    margin-bottom: 15px;
    color: #555;
}

#serviceConfirmation {
    font-weight: 600;
    color: #27ae60;
}

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

.primary-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.secondary-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #95a5a6;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.legal-content {
    padding: 60px 0;
}

.legal-card {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.legal-card h2 {
    font-size: 1.6rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-card h2:first-child {
    margin-top: 0;
}

.legal-card h3 {
    font-size: 1.3rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #34495e;
}

.legal-card p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.legal-card ul {
    margin-bottom: 15px;
    margin-left: 20px;
    color: #555;
    line-height: 1.8;
}

.legal-card li {
    margin-bottom: 8px;
}

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

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

.legal-card em {
    color: #7f8c8d;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .main-nav {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .intro-card {
        flex-direction: column;
    }

    .intro-image {
        width: 100%;
        height: 250px;
    }

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

    .approach-grid {
        flex-direction: column;
    }

    .approach-visual {
        height: 300px;
    }

    .about-card-main {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
        height: 300px;
    }

    .approach-card-reverse {
        flex-direction: column;
    }

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

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

    .service-detail-image {
        width: 100%;
        height: 250px;
    }

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

    .contact-visual {
        height: 300px;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .legal-card {
        padding: 30px 20px;
    }
}