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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 32, 44, 0.95);
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-accept {
    background: #48bb78;
    color: white;
}

.btn-accept:hover {
    background: #38a169;
}

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

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

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.ad-label {
    font-size: 12px;
    color: #718096;
    padding: 4px 10px;
    background: #f7fafc;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 28px;
}

.main-nav a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: #2d3748;
}

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

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.hero-text-box {
    position: relative;
    z-index: 1;
    max-width: 680px;
    padding: 60px 0;
}

.hero-text-box h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a202c;
}

.hero-text-box p {
    font-size: 20px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 32px;
}

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #3182ce;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s;
}

.cta-primary:hover {
    background: #2c5282;
}

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

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

.info-card {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.info-card img {
    width: 100%;
    height: 240px;
    display: block;
}

.card-content {
    padding: 28px;
}

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

.card-content p {
    color: #4a5568;
    line-height: 1.7;
}

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

.section-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #1a202c;
}

.service-cards-flex {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    gap: 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s;
}

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

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

.service-visual {
    flex: 1;
    min-width: 350px;
    position: relative;
}

.service-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #2d3748;
}

.service-info p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.btn-select-service {
    padding: 12px 28px;
    background: #3182ce;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    align-self: flex-start;
}

.btn-select-service:hover {
    background: #2c5282;
}

.form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 12px;
}

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

.form-intro {
    text-align: center;
    color: #4a5568;
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #2d3748;
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.2s;
}

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

.btn-submit {
    padding: 14px;
    background: #3182ce;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #2c5282;
}

.closing-statement {
    padding: 80px 0;
    background: #f7fafc;
}

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

.statement-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a202c;
}

.statement-box p {
    font-size: 19px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 28px;
}

.link-subtle {
    color: #3182ce;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}

.link-subtle:hover {
    border-bottom-color: #3182ce;
}

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

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

.footer-col {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-col a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-disclaimer {
    max-width: 900px;
    margin: 0 auto 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
}

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

.thanks-box {
    max-width: 600px;
    text-align: center;
    padding: 50px;
    background: #f7fafc;
    border-radius: 12px;
}

.thanks-box h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2d3748;
}

.thanks-box p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 16px;
}

.thanks-box .selected-service {
    font-weight: 600;
    color: #3182ce;
}

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

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

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

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2d3748;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #4a5568;
}

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

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
    line-height: 1.8;
    color: #4a5568;
}

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

.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

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

.contact-info h1 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #2d3748;
}

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2d3748;
}

.contact-detail p {
    color: #4a5568;
    line-height: 1.7;
}

.about-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.about-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
}

.about-hero p {
    text-align: center;
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2d3748;
}

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

.services-page {
    padding: 60px 0;
}

.services-page h1 {
    font-size: 42px;
    margin-bottom: 48px;
    text-align: center;
    color: #2d3748;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-direction: column;
        gap: 12px;
    }

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

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

    .service-card,
    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .service-visual {
        min-width: auto;
        min-height: 250px;
    }

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

    .form-wrapper {
        padding: 30px 20px;
    }
}