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

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

.navbar {
    background: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.brand {
    font-size: 1.4em;
    font-weight: 700;
    color: #2c3e50;
}

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

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

.nav-links a:hover,
.nav-links a.active {
    color: #3498db;
}

.ad-label {
    background: #f39c12;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: 600;
}

.hero-card {
    margin-top: 0;
}

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

.hero-overlay {
    background: rgba(0,0,0,0.5);
    padding: 60px 40px;
    border-radius: 8px;
    text-align: center;
    max-width: 700px;
    margin: 0 20px;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-overlay p {
    color: #ecf0f1;
    font-size: 1.3em;
    line-height: 1.5;
}

.intro-section,
.services-preview,
.trust-section,
.cta-section,
.contact-form-section,
.disclaimer-section,
.about-content,
.services-detail,
.contact-info-section,
.map-section,
.legal-content,
.thanks-section {
    padding: 80px 0;
}

.intro-card,
.trust-card,
.cta-card,
.form-card,
.disclaimer-card,
.about-intro-card,
.approach-card,
.legal-card,
.thanks-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.intro-card h2,
.trust-card h2,
.cta-card h2 {
    font-size: 2.2em;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-card p,
.trust-card p,
.approach-card p {
    font-size: 1.1em;
    color: #34495e;
    margin-bottom: 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
}

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

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

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

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-body h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #2c3e50;
}

.card-body p {
    color: #7f8c8d;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price {
    font-size: 1.8em;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-select-service,
.btn-primary,
.btn-submit {
    background: #3498db;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-select-service:hover,
.btn-primary:hover,
.btn-submit:hover {
    background: #2980b9;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    flex: 1;
    min-width: 250px;
    padding: 25px;
    background: #ecf0f1;
    border-radius: 8px;
}

.feature-item h4 {
    font-size: 1.3em;
    margin-bottom: 12px;
    color: #2c3e50;
}

.feature-item p {
    color: #34495e;
}

.cta-section {
    background: #ecf0f1;
}

.cta-card {
    text-align: center;
}

.cta-card p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #34495e;
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
}

.form-card h2 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-card > p {
    margin-bottom: 30px;
    color: #7f8c8d;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 6px;
    font-size: 1em;
    font-family: inherit;
}

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

.disclaimer-section {
    background: #fff9e6;
}

.disclaimer-card {
    background: transparent;
    box-shadow: none;
    padding: 30px;
}

.disclaimer-card p {
    color: #7f8c8d;
    font-size: 0.95em;
    line-height: 1.7;
}

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 1.2em;
}

.footer-col p,
.footer-col ul {
    color: #bdc3c7;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    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;
}

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.btn-cookie-accept:hover {
    opacity: 0.9;
}

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

.btn-cookie-reject:hover {
    opacity: 0.9;
}

.page-header {
    background: #34495e;
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

.page-header h1 {
    font-size: 3em;
    font-weight: 700;
}

.about-intro-card {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.about-intro-card .card-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: 12px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

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

.about-text p {
    font-size: 1.1em;
    color: #34495e;
    margin-bottom: 20px;
}

.values-section {
    margin: 80px 0;
}

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

.value-card {
    background: #ecf0f1;
    padding: 35px;
    border-radius: 8px;
    width: calc(33.333% - 20px);
    min-width: 280px;
}

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

.value-card p {
    color: #34495e;
}

.team-section {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
    margin: 80px 0;
}

.team-section h2 {
    font-size: 2em;
    margin-bottom: 25px;
    color: #2c3e50;
}

.team-section p {
    font-size: 1.1em;
    color: #34495e;
    margin-bottom: 20px;
}

.approach-card {
    margin-top: 40px;
}

.approach-card h2 {
    font-size: 2em;
    margin-bottom: 25px;
    color: #2c3e50;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

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

.service-info {
    flex: 1;
    min-width: 300px;
}

.service-info h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-info p {
    font-size: 1.05em;
    color: #34495e;
    margin-bottom: 20px;
}

.service-info ul {
    margin: 25px 0;
    padding-left: 20px;
}

.service-info ul li {
    color: #34495e;
    margin-bottom: 10px;
}

.service-visual {
    flex: 1;
    min-width: 300px;
    height: 350px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
}

.price-box {
    background: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
    font-size: 1.8em;
    font-weight: 700;
    color: #27ae60;
    margin: 25px 0;
    display: inline-block;
}

.contact-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.contact-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-card p {
    color: #34495e;
    line-height: 1.8;
}

.contact-note {
    background: #ecf0f1;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-note p {
    color: #34495e;
    font-size: 1.05em;
}

.legal-card h2 {
    font-size: 2em;
    margin: 40px 0 20px;
    color: #2c3e50;
}

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

.legal-card h3 {
    font-size: 1.4em;
    margin: 30px 0 15px;
    color: #34495e;
}

.legal-card p {
    color: #34495e;
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-card ul {
    margin: 20px 0 20px 20px;
}

.legal-card ul li {
    color: #34495e;
    margin-bottom: 10px;
    line-height: 1.7;
}

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

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

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

.thanks-card h1 {
    font-size: 2.5em;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-card p {
    font-size: 1.2em;
    color: #34495e;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 0.9em;
    }

    .hero-overlay h1 {
        font-size: 2em;
    }

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

    .service-card {
        width: 100%;
    }

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

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

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