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

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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    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: 24px;
    flex-wrap: wrap;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background-color: #3498db;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #2980b9;
}

.cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.hero-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.85), rgba(142, 68, 173, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    padding: 0 24px;
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
}

.intro-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.intro-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

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

.intro-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

.story-section {
    padding: 100px 0;
}

.story-content {
    max-width: 700px;
}

.story-content h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 32px;
    color: #2c3e50;
}

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

.story-image {
    margin-top: 48px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.story-image img {
    width: 100%;
    height: auto;
}

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

.insight-box {
    max-width: 900px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 60px 48px;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

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

.insight-box p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.insight-box a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.insight-box a:hover {
    text-decoration: underline;
}

.products-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 64px;
    color: #2c3e50;
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.product-card {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
}

.product-info {
    padding: 32px 28px;
}

.product-info h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.product-info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.product-price {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 24px;
}

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

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

.trust-section {
    padding: 100px 0;
}

.trust-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 64px;
    color: #2c3e50;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 40px 32px;
    border-radius: 12px;
    border-left: 4px solid #3498db;
}

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

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

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

.form-box {
    background-color: #ffffff;
    padding: 60px 48px;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.form-box h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.form-box > p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

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

.disclaimer-section {
    padding: 80px 0;
    background-color: #fff3e0;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 12px;
    border: 2px solid #ffb74d;
}

.disclaimer-box h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #e67e22;
}

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

.references-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.references-section h3 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.references-list {
    list-style-position: inside;
    padding-left: 0;
}

.references-list li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #4a5568;
}

.references-list a {
    color: #3498db;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

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

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

.footer-grid {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

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

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 24px;
    text-align: center;
}

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

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

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

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

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

.about-text {
    flex: 1;
    min-width: 320px;
}

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

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

.about-image {
    flex: 1;
    min-width: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.about-image img {
    width: 100%;
    height: auto;
}

.values-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

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

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

.value-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

.team-section {
    padding: 100px 0;
}

.team-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 32px;
    color: #2c3e50;
}

.team-intro {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
    color: #4a5568;
}

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

.process-card {
    flex: 1;
    min-width: 240px;
    padding: 32px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 12px;
    text-align: center;
}

.process-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    opacity: 0.8;
}

.process-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.process-card p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.mission-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.mission-box {
    background-color: #ffffff;
    padding: 60px 48px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.mission-box h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.mission-box p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #4a5568;
}

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

.services-grid-detailed {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.service-detail-card {
    display: flex;
    gap: 48px;
    align-items: center;
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

.service-detail-image {
    flex: 1;
    min-width: 320px;
    height: 400px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
}

.service-detail-content {
    flex: 1;
    min-width: 320px;
    padding: 40px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-price-large {
    font-size: 42px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 24px;
}

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

.service-features {
    list-style-position: inside;
    margin-bottom: 32px;
}

.service-features li {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 8px;
}

.select-btn-large {
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.cta-box {
    text-align: center;
    padding: 60px 40px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

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

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

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

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

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

.contact-info-box h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

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

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

.contact-note {
    margin-top: 48px;
    padding: 24px;
    background-color: #e8f5e9;
    border-radius: 8px;
    border-left: 4px solid #4caf50;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.6;
    color: #2e7d32;
}

.contact-map-placeholder {
    flex: 1;
    min-width: 320px;
    min-height: 400px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-overlay {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 24px 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.map-overlay p {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
}

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

.thanks-box {
    text-align: center;
    max-width: 600px;
    background-color: #ffffff;
    padding: 60px 48px;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #4caf50;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

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

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.service-selected {
    font-size: 16px;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 32px;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

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

.legal-date {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #34495e;
}

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

.legal-content ul,
.legal-content ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #4a5568;
}

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

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
}

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

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

.cookie-table td {
    color: #4a5568;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        flex-direction: column;
        gap: 16px;
    }

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

    .hero-content p {
        font-size: 18px;
    }

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

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

    .product-card {
        min-width: 100%;
    }

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

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

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

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

    .service-detail-card {
        flex-direction: column;
    }

    .service-detail-image {
        width: 100%;
        height: 300px;
    }

    .contact-layout {
        flex-direction: column;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}