* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #e94560;
    text-decoration: none;
}

.ad-disclosure {
    color: #94a3b8;
    font-size: 11px;
    padding: 4px 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    margin-left: 20px;
}

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

nav a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #e94560;
}

.hero-section {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

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

.hero-text p {
    font-size: 20px;
    margin-bottom: 35px;
    color: #cbd5e1;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    min-width: 300px;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.cta-button {
    display: inline-block;
    background: #e94560;
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #d63651;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(233, 69, 96, 0.3);
}

.section-intro {
    background: #f8fafc;
    padding: 90px 0;
}

.section-intro h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a2e;
    text-align: center;
}

.section-intro .content-block {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    font-size: 19px;
    line-height: 1.8;
    color: #475569;
}

.problem-section {
    background: white;
    padding: 80px 0;
}

.problem-content {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.problem-image {
    flex: 1;
    min-width: 300px;
    background: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.problem-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.problem-text {
    flex: 1;
    min-width: 300px;
}

.problem-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #16213e;
}

.problem-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

.insight-section {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    color: white;
    padding: 90px 0;
}

.insight-section h2 {
    font-size: 40px;
    margin-bottom: 35px;
    text-align: center;
}

.insight-cards {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.08);
    padding: 35px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.insight-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #e94560;
}

.insight-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #cbd5e1;
}

.benefits-section {
    background: #ffffff;
    padding: 90px 0;
}

.benefits-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
    color: #1a1a2e;
}

.benefits-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 18px;
    color: #64748b;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.benefit-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: #e94560;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #16213e;
}

.benefit-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
}

.testimonials-section {
    background: #f1f5f9;
    padding: 90px 0;
}

.testimonials-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a2e;
}

.testimonials-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #16213e;
    font-size: 16px;
}

.testimonial-location {
    color: #94a3b8;
    font-size: 14px;
}

.services-section {
    background: white;
    padding: 100px 0;
}

.services-section h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a2e;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 280px;
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

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

.service-image {
    width: 100%;
    height: 220px;
    background: #cbd5e1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #16213e;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 20px;
}

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

.select-service-btn {
    width: 100%;
    background: #16213e;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.select-service-btn:hover {
    background: #0f3460;
}

.select-service-btn.selected {
    background: #e94560;
}

.form-section {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    padding: 90px 0;
    color: white;
}

.form-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
}

.form-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: #cbd5e1;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.08);
    padding: 45px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #cbd5e1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    font-size: 16px;
    background: rgba(255,255,255,0.95);
    color: #1a1a2e;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

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

.submit-btn:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    transform: none;
}

footer {
    background: #1a1a2e;
    color: #cbd5e1;
    padding: 60px 0 30px;
}

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

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #e94560;
}

.footer-section p,
.footer-section a {
    font-size: 15px;
    line-height: 1.8;
    color: #94a3b8;
    text-decoration: none;
}

.footer-section a {
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #e94560;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: #64748b;
}

.disclaimer {
    background: #f1f5f9;
    padding: 40px 0;
    font-size: 14px;
    color: #64748b;
    text-align: center;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: white;
    padding: 25px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
    font-size: 15px;
    line-height: 1.6;
    color: #cbd5e1;
}

.cookie-text a {
    color: #e94560;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: #e94560;
    color: white;
}

.cookie-accept:hover {
    background: #d63651;
}

.cookie-reject {
    background: #475569;
    color: white;
}

.cookie-reject:hover {
    background: #334155;
}

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

.about-page h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.about-content {
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
}

.about-content p {
    margin-bottom: 20px;
}

.about-image-section {
    margin: 50px 0;
    background: #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
}

.about-image-section img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

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

.services-page h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #1a1a2e;
    text-align: center;
}

.services-intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 18px;
    color: #64748b;
    line-height: 1.7;
}

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

.contact-page h1 {
    font-size: 48px;
    margin-bottom: 50px;
    color: #1a1a2e;
}

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

.contact-item {
    margin-bottom: 30px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 8px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #16213e;
}

.contact-item p {
    font-size: 17px;
    color: #475569;
    line-height: 1.7;
}

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

.legal-page h1 {
    font-size: 44px;
    margin-bottom: 40px;
    color: #1a1a2e;
}

.legal-page h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: #16213e;
}

.legal-page h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: #334155;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 15px;
}

.legal-page ul {
    margin: 15px 0 15px 30px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 8px;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.thanks-content h1 {
    font-size: 52px;
    margin-bottom: 25px;
}

.thanks-content p {
    font-size: 20px;
    margin-bottom: 35px;
    color: #cbd5e1;
    line-height: 1.7;
}

.back-home {
    display: inline-block;
    background: #e94560;
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-home:hover {
    background: #d63651;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .hero-content,
    .problem-content {
        flex-direction: column;
    }

    .services-grid .service-card {
        flex: 1 1 100%;
    }

    nav {
        width: 100%;
        margin-top: 15px;
        flex-wrap: wrap;
        gap: 15px;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}
