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

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

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

.ad-notice {
    background-color: #f5f5f5;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: #555;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #e91e63;
}

.hero-section {
    display: flex;
    min-height: 500px;
    background-color: #fafafa;
}

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 20px;
    color: #666;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    overflow: hidden;
}

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

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

.card-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.story-card {
    flex: 1;
    padding: 40px;
}

.story-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.story-card p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #555;
}

.visual-card {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.insight-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.insight-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.insight-text {
    flex: 1.2;
    padding: 20px;
}

.insight-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.insight-text p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #555;
}

.insight-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

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

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

.benefits-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.benefit-card {
    flex: 1;
    text-align: center;
}

.benefit-icon {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    height: 250px;
}

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

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

.benefit-card p {
    font-size: 16px;
    color: #666;
}

.testimonials-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.testimonial-card {
    flex: 1;
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #999;
    font-weight: 600;
}

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

.services-preview h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.service-card {
    flex: 0 0 calc(33.333% - 17px);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    height: 220px;
    overflow: hidden;
}

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

.service-info {
    padding: 25px;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.service-info p {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #e91e63;
}

.order-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.order-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.order-intro {
    flex: 1;
}

.order-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.order-intro p {
    font-size: 17px;
    color: #666;
}

.order-form {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.3s;
}

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

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #e91e63;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    padding: 60px 0;
    background-color: #fff;
}

.disclaimer-box {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #e91e63;
}

.disclaimer-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 8px;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    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;
}

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

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #4CAF50;
    color: #fff;
}

.cookie-btn.accept:hover {
    background-color: #45a049;
}

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

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

.page-header {
    background-color: #f5f5f5;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    color: #666;
}

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

.about-grid {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

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

.values-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.values-cards {
    display: flex;
    gap: 30px;
}

.value-card {
    flex: 1;
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.process-section {
    padding: 80px 0;
}

.process-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.process-step {
    flex: 1;
    text-align: center;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.process-step p {
    font-size: 16px;
    color: #666;
}

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

.services-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-item {
    display: flex;
    gap: 50px;
    align-items: center;
}

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

.service-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

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

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-details p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    margin-bottom: 25px;
}

.feature-list li {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: 700;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #e91e63;
}

.cta-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.cta-box {
    background-color: #e91e63;
    color: #fff;
    padding: 60px;
    border-radius: 8px;
    text-align: center;
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #fff;
    color: #e91e63;
    text-decoration: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
    background-color: #f5f5f5;
    color: #c2185b;
}

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

.contact-layout {
    display: flex;
    gap: 50px;
}

.contact-info-card {
    flex: 1;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
}

.contact-info-card h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.info-block p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.contact-message {
    flex: 1;
    padding: 20px;
}

.contact-message h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-message p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

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

.thanks-message {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

.thanks-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    padding: 15px 30px;
    background-color: #e91e63;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #c2185b;
}

.btn-secondary {
    padding: 15px 30px;
    background-color: #666;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #555;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-content ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-content a {
    color: #e91e63;
    text-decoration: none;
}

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

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.data-table th,
.data-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.data-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #2c3e50;
}

.data-table td {
    color: #555;
    font-size: 15px;
}

.updated {
    margin-top: 40px;
    font-size: 14px;
    color: #999;
    font-style: italic;
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
    }

    .card-grid,
    .insight-wrapper,
    .about-grid,
    .contact-layout,
    .order-wrapper {
        flex-direction: column;
    }

    .benefits-grid,
    .testimonial-cards,
    .values-cards,
    .process-grid {
        flex-direction: column;
    }

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

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

    .service-item,
    .service-item.reverse {
        flex-direction: column;
    }

    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }

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

    .thanks-actions {
        flex-direction: column;
    }
}