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

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

.ad-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    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;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

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

.hero {
    display: flex;
    min-height: 520px;
    background-color: #f8f9fa;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px 60px 80px;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 19px;
    color: #4a5568;
    margin-bottom: 35px;
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.cta-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

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

.intro-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.intro-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.intro-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 18px;
}

.services-grid {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

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

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

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

.card-content {
    padding: 28px;
}

.card-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.card-content p {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 18px;
}

.select-service {
    width: 100%;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.trust-section {
    padding: 70px 0;
    background-color: #2c3e50;
    color: #ffffff;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 48px;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 10px;
}

.trust-label {
    font-size: 16px;
    color: #ecf0f1;
}

.form-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.form-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    color: #1a1a1a;
}

.form-wrapper > p {
    text-align: center;
    color: #4a5568;
    margin-bottom: 35px;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 15px;
    background-color: #ffffff;
    transition: border-color 0.3s;
}

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

.submit-btn {
    width: 100%;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.disclaimer-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.disclaimer-text {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #ffffff;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    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: 30px;
    flex-wrap: wrap;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

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

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

.cookie-reject:hover {
    background-color: #7f8c8d;
    transform: translateY(-2px);
}

.page-header {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

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

.about-content {
    padding: 80px 0;
}

.about-story {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.story-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 18px;
}

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

.values-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

.values-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

.team-approach h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.team-approach p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 18px;
}

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

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

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

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

.detail-content {
    flex: 1;
}

.detail-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.detail-price {
    font-size: 32px;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 20px;
}

.detail-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: #2c3e50;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.cta-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.cta-section p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 30px;
}

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

.contact-grid {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

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

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

.legal-text h2 {
    font-size: 26px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.legal-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 28px;
    margin-bottom: 14px;
    color: #2c3e50;
}

.legal-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
}

.legal-text ul,
.legal-text ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-text ul li,
.legal-text ol li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 10px;
}

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

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

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

.thanks-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 20px;
}

.service-info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
    font-weight: 600;
    color: #2c3e50;
}

.back-link {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 20px;
    transition: background-color 0.3s, transform 0.2s;
}

.back-link:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-image {
        min-height: 300px;
    }

    .nav-menu {
        gap: 20px;
        flex-wrap: wrap;
    }

    .service-card {
        width: 100%;
    }

    .about-story {
        flex-direction: column;
    }

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

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

    .values-cards {
        flex-direction: column;
    }
}
