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

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

.header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #ecf0f1;
    border-radius: 4px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

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

.hero {
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
}

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

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 32px;
    line-height: 1.5;
}

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

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

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

.intro-card {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    max-width: 800px;
    margin: 0 auto;
}

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

.intro-card p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.7;
}

.services-cards {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    width: calc(33.333% - 22px);
    min-width: 320px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #e0e6ed;
}

.card-content {
    padding: 28px;
}

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

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

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

.btn-card {
    width: 100%;
    padding: 14px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.approach-section {
    padding: 80px 0;
    background-color: #ecf0f1;
}

.approach-content {
    display: flex;
    gap: 56px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

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

.approach-text p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.7;
}

.approach-text sup a {
    color: #3498db;
    text-decoration: none;
}

.approach-visual {
    flex: 1;
}

.approach-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

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

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

.testimonials-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid #3498db;
}

.testimonial-card p {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 600;
}

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

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

.form-container h2 {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
}

.form-container > p {
    color: #ecf0f1;
    font-size: 17px;
    text-align: center;
    margin-bottom: 40px;
}

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

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

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

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

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

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

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

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

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

.footer {
    background-color: #34495e;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

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

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

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

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

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

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

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

.footer-column a:hover {
    color: #ffffff;
}

.footer-references {
    margin-bottom: 32px;
    padding-top: 32px;
    border-top: 1px solid #5a6c7d;
}

.footer-references h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #ffffff;
}

.footer-references p {
    font-size: 13px;
    line-height: 1.6;
}

.footer-references a {
    color: #3498db;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #5a6c7d;
    font-size: 14px;
    color: #bdc3c7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
    z-index: 2000;
}

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

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

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    background-color: #27ae60;
    color: #ffffff;
}

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

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

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

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.thanks-box {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 600px;
}

.thanks-box h1 {
    font-size: 40px;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-box p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.6;
}

.thanks-box .selected-service {
    font-weight: 600;
    color: #2c3e50;
}

.thanks-box a {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.thanks-box a:hover {
    background-color: #2980b9;
}

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

.contact-info {
    max-width: 700px;
    margin: 0 auto;
}

.contact-info h1 {
    font-size: 40px;
    margin-bottom: 32px;
    text-align: center;
    color: #2c3e50;
}

.info-block {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.info-block p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

.legal-page {
    padding: 80px 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-content ul {
    margin-left: 32px;
    margin-bottom: 16px;
}

.legal-content li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 8px;
    line-height: 1.6;
}

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

    .main-nav ul {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

    .hero-text p {
        font-size: 16px;
    }

    .service-card {
        width: 100%;
    }

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

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

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

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