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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-banner.active {
    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: 300px;
}

.cookie-content a {
    color: #4a90e2;
    text-decoration: underline;
}

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

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

.cookie-btn.accept {
    background: #4a90e2;
    color: white;
}

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

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

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

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

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

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    background: #f8f9fa;
    border-radius: 4px;
    font-weight: 500;
}

.nav {
    display: flex;
    gap: 30px;
}

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

.nav a:hover {
    color: #4a90e2;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #2c3e50;
}

.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text {
    flex: 1;
}

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

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

.hero-image {
    flex: 1;
    background: #d4dce6;
    border-radius: 12px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.cta-button:hover {
    background: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

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

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

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

.feature-card:hover {
    transform: translateY(-8px);
}

.card-icon {
    width: 100%;
    height: 240px;
    background: #e8eef5;
    overflow: hidden;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card h3 {
    padding: 25px 25px 15px;
    font-size: 24px;
    color: #1a1a2e;
}

.feature-card p {
    padding: 0 25px 25px;
    color: #5a6c7d;
    line-height: 1.7;
}

.services-preview {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.section-header p {
    font-size: 20px;
    color: #5a6c7d;
}

.services-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card.featured {
    border: 3px solid #4a90e2;
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #4a90e2;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
}

.service-header {
    padding: 30px 25px 20px;
}

.service-header h3 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #4a90e2;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #e8eef5;
}

.service-features {
    list-style: none;
    padding: 25px 25px 20px;
    flex: 1;
}

.service-features li {
    padding: 10px 0;
    border-bottom: 1px solid #e8e8e8;
    color: #5a6c7d;
}

.service-features li:last-child {
    border-bottom: none;
}

.select-service {
    margin: 0 25px 25px;
    padding: 14px;
    width: calc(100% - 50px);
    background: #4a90e2;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #357abd;
}

.problem-solution {
    padding: 80px 0;
}

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

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a2e;
    line-height: 1.3;
}

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

.text-link {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    margin-top: 15px;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: #357abd;
}

.content-image {
    flex: 1;
    background: #d4dce6;
    border-radius: 12px;
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.testimonials {
    padding: 80px 0;
    background: #1a1a2e;
    color: white;
}

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

.testimonial-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 12px;
    border-left: 4px solid #4a90e2;
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #4a90e2;
}

.form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
}

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

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

.form-wrapper > p {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 35px;
    font-size: 16px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid #e8e8e8;
    border-radius: 6px;
    font-size: 16px;
    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: #4a90e2;
}

.submit-button {
    padding: 16px;
    background: #4a90e2;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #357abd;
}

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

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

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

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #4a90e2;
}

.footer-column p {
    color: #b0b8c1;
    line-height: 1.7;
}

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

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

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

.footer-column ul li a:hover {
    color: #4a90e2;
}

.disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 30px;
}

.disclaimer p {
    font-size: 14px;
    color: #b0b8c1;
    line-height: 1.6;
}

.thanks-page {
    padding: 100px 0;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    font-size: 80px;
    color: #4a90e2;
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

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

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

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

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a2e;
}

.info-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

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

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

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

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

.about-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: #1a1a2e;
}

.about-content p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.services-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.services-content > p {
    font-size: 20px;
    color: #5a6c7d;
    text-align: center;
    margin-bottom: 60px;
}

.service-detail {
    background: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
}

.service-detail h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

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

.service-detail p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 15px;
}

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

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.legal-content h2 {
    font-size: 28px;
    margin: 35px 0 15px;
    color: #1a1a2e;
}

.legal-content h3 {
    font-size: 22px;
    margin: 25px 0 12px;
    color: #2c3e50;
}

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

.legal-content ul,
.legal-content ol {
    margin: 15px 0 15px 30px;
    color: #5a6c7d;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .header-container {
        position: relative;
    }

    .nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 15px;
        padding-top: 20px;
    }

    .nav.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

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

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

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

    .card-grid,
    .services-grid,
    .testimonial-grid {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}