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

.ad-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #5a6c7d;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3498db;
}

.hero-split {
    display: flex;
    min-height: 550px;
    background-color: #fafbfc;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    max-width: 600px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #2980b9;
}

.hero-image {
    flex: 1;
    background-color: #e8f4f8;
    position: relative;
    overflow: hidden;
}

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

.intro-section {
    display: flex;
    max-width: 1200px;
    margin: 90px auto;
    padding: 0 60px;
    gap: 70px;
    align-items: center;
}

.intro-left {
    flex: 1;
    background-color: #f0f4f8;
    border-radius: 8px;
    overflow: hidden;
}

.intro-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro-right {
    flex: 1;
}

.intro-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
    font-weight: 700;
}

.intro-right p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.features-alt {
    background-color: #f9fafb;
    padding: 90px 60px;
}

.features-alt h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a202c;
    font-weight: 700;
}

.features-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.feature-card {
    flex: 1 1 calc(50% - 20px);
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 600;
}

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

.services-pricing {
    max-width: 1200px;
    margin: 90px auto;
    padding: 0 60px;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-intro h2 {
    font-size: 38px;
    margin-bottom: 18px;
    color: #1a202c;
    font-weight: 700;
}

.pricing-intro p {
    font-size: 18px;
    color: #5a6c7d;
}

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

.price-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    max-width: 360px;
    background-color: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    padding: 36px 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.price-card.featured {
    border-color: #3498db;
    background-color: #f0f9ff;
}

.price-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a202c;
    font-weight: 700;
}

.price-card .price {
    font-size: 32px;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 4px;
}

.price-card .price-desc {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 24px;
}

.price-card ul {
    list-style: none;
    margin-bottom: 28px;
}

.price-card ul li {
    padding: 10px 0;
    font-size: 15px;
    color: #4a5568;
    border-bottom: 1px solid #f0f0f0;
}

.price-card ul li:last-child {
    border-bottom: none;
}

.btn-select {
    width: 100%;
    padding: 14px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section {
    background-color: #f8f9fa;
    padding: 90px 60px;
}

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

.form-info p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 30px;
    line-height: 1.7;
}

.form-info img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.form-wrapper {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

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

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

.form-group input,
.form-group select {
    padding: 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 16px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #229954;
}

.testimonials-section {
    max-width: 1200px;
    margin: 90px auto;
    padding: 0 60px;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a202c;
    font-weight: 700;
}

.testimonials-flex {
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    background-color: #f9fafb;
    padding: 36px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial .author {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 60px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 30px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-bottom .disclaimer {
    font-size: 12px;
    color: #7f8c8d;
    line-height: 1.6;
    margin-top: 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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 {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-cookie:hover {
    opacity: 0.9;
}

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

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

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

.hero-text h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 18px;
    font-weight: 800;
}

.hero-text p {
    font-size: 20px;
    color: #ffffff;
    opacity: 0.95;
}

.about-story-split {
    display: flex;
    max-width: 1200px;
    margin: 90px auto;
    padding: 0 60px;
    gap: 70px;
    align-items: center;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
    font-weight: 700;
}

.story-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
    background-color: #f0f4f8;
    border-radius: 8px;
    overflow: hidden;
}

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

.values-section {
    background-color: #f9fafb;
    padding: 90px 60px;
}

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a202c;
    font-weight: 700;
}

.values-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.value-item {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 600;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.team-split {
    display: flex;
    max-width: 1200px;
    margin: 90px auto;
    padding: 0 60px;
    gap: 70px;
    align-items: center;
}

.team-image {
    flex: 1;
    background-color: #f0f4f8;
    border-radius: 8px;
    overflow: hidden;
}

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

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
    font-weight: 700;
}

.team-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.stats-section {
    background-color: #2c3e50;
    padding: 80px 60px;
}

.stats-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #ffffff;
    font-weight: 700;
}

.stats-flex {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #ecf0f1;
}

.cta-section-alt {
    text-align: center;
    padding: 90px 60px;
    background-color: #f0f9ff;
}

.cta-section-alt h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

.cta-section-alt p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #2980b9;
}

.services-detailed {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 60px;
}

.service-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-color: #f0f4f8;
    border-radius: 8px;
    overflow: hidden;
    min-height: 350px;
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a202c;
    font-weight: 700;
}

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

.service-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 24px;
    font-size: 16px;
    color: #4a5568;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.comparison-section {
    background-color: #f9fafb;
    padding: 90px 60px;
}

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

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid #e8e8e8;
}

.comparison-table th {
    background-color: #2c3e50;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
}

.comparison-table td {
    font-size: 15px;
    color: #4a5568;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.contact-split {
    display: flex;
    max-width: 1200px;
    margin: 90px auto;
    padding: 0 60px;
    gap: 70px;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a202c;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 36px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.contact-item .note {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 8px;
    font-style: italic;
}

.contact-image {
    flex: 1;
    background-color: #f0f4f8;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.faq-section {
    max-width: 1000px;
    margin: 90px auto;
    padding: 0 60px;
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background-color: #f9fafb;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.thanks-section {
    display: flex;
    max-width: 1200px;
    margin: 90px auto;
    padding: 0 60px;
    gap: 70px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #27ae60;
    font-weight: 700;
}

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

.thanks-image {
    flex: 1;
    background-color: #f0f4f8;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.legal-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 60px;
    line-height: 1.8;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a202c;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #34495e;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 16px;
}

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-page ul li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 10px;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-section,
    .about-story-split,
    .team-split,
    .service-block,
    .contact-split,
    .thanks-section,
    .form-container-split {
        flex-direction: column;
    }

    .service-block.reverse {
        flex-direction: column;
    }

    .testimonials-flex,
    .values-grid,
    .stats-flex {
        flex-direction: column;
    }

    .nav-links {
        gap: 20px;
    }

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

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

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
}