* {
    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: #333;
    background: #fff;
}

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

.header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

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

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

.nav a:hover {
    color: #2c3e50;
}

.ad-notice {
    font-size: 11px;
    color: #999;
    padding: 5px 12px;
    background: #f8f8f8;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
}

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

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

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

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

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

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

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

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

.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #e5e5e5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85), rgba(52, 73, 94, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-overlay h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-overlay p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: #e74c3c;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

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

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

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.services-grid {
    padding: 90px 0;
}

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

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

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    width: calc(33.333% - 20px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

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

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

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

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

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

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

.btn-card {
    padding: 12px 25px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

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

.service-card.selected .btn-card {
    background: #27ae60;
}

.service-card.selected {
    border: 3px solid #27ae60;
}

.form-section {
    padding: 90px 0;
    background: #ecf0f1;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.form-intro {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    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: 15px;
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #c0392b;
}

.why-choose {
    padding: 90px 0;
    background: #fff;
}

.why-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.why-card {
    flex: 1;
    max-width: 350px;
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.why-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.why-card p {
    color: #666;
    line-height: 1.8;
}

.testimonials {
    padding: 90px 0;
    background: #2c3e50;
    color: #fff;
}

.testimonials h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
}

.testimonial-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.testimonial {
    flex: 1;
    max-width: 350px;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.client-name {
    font-weight: 600;
    font-size: 14px;
}

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

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 35px;
}

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

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col p {
    color: #bdc3c7;
    line-height: 1.8;
}

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

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

.footer-bottom {
    border-top: 1px solid #455a64;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 14px;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    color: #7f8c8d;
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.6;
}

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

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
}

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

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

.content-section h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: #34495e;
}

.content-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-section ul,
.content-section ol {
    margin: 20px 0;
    padding-left: 30px;
}

.content-section li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

.contact-grid {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.contact-card {
    flex: 1;
    max-width: 400px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
    margin: 60px 0;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #e5e5e5;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 60px 0;
}

.service-item {
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
}

.service-image {
    flex: 1;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #e5e5e5;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    margin: 20px 0;
}

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

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

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

.thanks-box p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.selected-service {
    font-weight: 700;
    color: #2c3e50;
}

@media (max-width: 768px) {
    .nav {
        gap: 15px;
    }

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

    .service-card {
        width: 100%;
    }

    .why-grid,
    .testimonial-cards,
    .contact-grid,
    .footer-content {
        flex-direction: column;
    }

    .about-grid,
    .service-item {
        flex-direction: column;
    }

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