* {
    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: #2d3436;
    background: #fafbfc;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3436;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #00b894;
    color: #fff;
}

.btn-accept:hover {
    background: #00a383;
}

.btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

.navbar {
    padding: 16px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: #6c5ce7;
    text-decoration: none;
}

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

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

.nav-links a:hover {
    color: #6c5ce7;
}

.ad-label {
    font-size: 11px;
    color: #636e72;
    background: #f1f3f4;
    padding: 4px 8px;
    border-radius: 3px;
}

.hero-card {
    position: relative;
    height: 600px;
    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;
    background-color: #b2bec3;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    background: linear-gradient(to right, rgba(108, 92, 231, 0.95), rgba(108, 92, 231, 0.7));
}

.hero-content-card {
    max-width: 600px;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.hero-content-card h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #2d3436;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-content-card p {
    font-size: 18px;
    color: #636e72;
    margin-bottom: 32px;
    line-height: 1.7;
}

.btn-primary,
.btn-secondary,
.btn-submit {
    display: inline-block;
    padding: 14px 32px;
    background: #6c5ce7;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-submit:hover {
    background: #5f4dd1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.3);
}

.intro-cards {
    padding: 80px 0;
    background: #fff;
}

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

.intro-card {
    flex: 1;
    min-width: 280px;
    padding: 36px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #6c5ce7;
}

.intro-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2d3436;
}

.intro-card p {
    color: #636e72;
    line-height: 1.7;
}

.services-overview {
    padding: 80px 0;
    background: #fafbfc;
}

.services-overview h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #2d3436;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-body {
    padding: 28px;
}

.service-body h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #2d3436;
}

.service-body p {
    color: #636e72;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 15px;
}

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

.btn-service {
    width: 100%;
    padding: 12px;
    background: #6c5ce7;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #5f4dd1;
}

.cta-card-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #6c5ce7 0%, #5f4dd1 100%);
}

.cta-card-large {
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.cta-card-large h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 20px;
}

.cta-card-large p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-secondary {
    background: #fff;
    color: #6c5ce7;
}

.btn-secondary:hover {
    background: #f8f9fa;
    color: #5f4dd1;
}

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

.form-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 48px;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #dfe6e9;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.about-preview {
    padding: 80px 0;
    background: #fafbfc;
}

.about-card-horizontal {
    display: flex;
    gap: 48px;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.about-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-color: #dfe6e9;
}

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

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

.about-text p {
    color: #636e72;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 16px;
}

.btn-text {
    display: inline-block;
    color: #6c5ce7;
    text-decoration: none;
    font-weight: 600;
    margin-top: 12px;
    transition: color 0.3s ease;
}

.btn-text:hover {
    color: #5f4dd1;
    text-decoration: underline;
}

.main-footer {
    background: #2d3436;
    color: #fff;
    padding: 60px 0 20px;
}

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

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

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

.footer-col p {
    color: #b2bec3;
    line-height: 1.7;
}

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

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

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

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

.footer-disclaimer {
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 24px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #b2bec3;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #b2bec3;
    font-size: 14px;
}

.content-page {
    padding: 80px 0;
    background: #fff;
}

.content-page .container {
    max-width: 900px;
}

.content-page h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #2d3436;
}

.content-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2d3436;
}

.content-page h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2d3436;
}

.content-page p {
    color: #636e72;
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-page ul,
.content-page ol {
    margin-bottom: 20px;
    padding-left: 24px;
    color: #636e72;
    line-height: 1.8;
}

.content-page ul li,
.content-page ol li {
    margin-bottom: 10px;
}

.contact-info-card {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 32px;
    border-left: 4px solid #6c5ce7;
}

.contact-info-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2d3436;
}

.contact-info-card p {
    margin-bottom: 12px;
    color: #636e72;
}

.thanks-page {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(135deg, #6c5ce7 0%, #5f4dd1 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.thanks-card {
    background: #fff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    max-width: 600px;
    margin: 0 auto;
}

.thanks-card h1 {
    font-size: 38px;
    color: #2d3436;
    margin-bottom: 24px;
}

.thanks-card p {
    font-size: 18px;
    color: #636e72;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-card .service-selected {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 32px 0;
    font-weight: 600;
    color: #6c5ce7;
}

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

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

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

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

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

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

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}
