* {
    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: #333;
    background-color: #f8f9fa;
}

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

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

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

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

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

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

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

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.hero-card {
    background-color: #ffffff;
    margin: 40px auto;
    max-width: 1200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

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

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-image {
    background-color: #ecf0f1;
}

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

.cta-primary, .cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #667eea;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.3);
}

.cta-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-secondary:hover {
    background-color: rgba(255,255,255,0.1);
}

.intro-cards {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.info-card {
    background-color: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
    flex: 1 1 300px;
    max-width: 360px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

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

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

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

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

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

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

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    flex: 1 1 350px;
    max-width: 380px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

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

.service-content p {
    color: #5a6c7d;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.btn-select-service, .btn-inquiry {
    padding: 14px 28px;
    background-color: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 15px;
}

.btn-select-service:hover, .btn-inquiry:hover {
    background-color: #5568d3;
    transform: translateY(-2px);
}

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

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
}

.form-card > p {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 30px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

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

.testimonial-card {
    background-color: #ffffff;
    padding: 40px 35px;
    border-radius: 12px;
    flex: 1 1 320px;
    max-width: 380px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-left: 4px solid #667eea;
}

.testimonial-card p {
    font-style: italic;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.author {
    font-weight: 600;
    color: #2c3e50;
    font-style: normal;
}

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

.cta-bottom h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

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

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

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

.footer-column {
    flex: 1 1 220px;
}

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

.footer-column p {
    color: #bdc3c7;
    line-height: 1.8;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    line-height: 1.6;
    margin-top: 20px;
}

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

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
}

.about-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.content-card {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
    flex-wrap: wrap;
}

.content-card.reverse {
    flex-direction: row-reverse;
}

.text-block {
    flex: 1 1 400px;
}

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

.text-block p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.image-block {
    flex: 1 1 400px;
    background-color: #ecf0f1;
    border-radius: 12px;
    overflow: hidden;
}

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

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

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

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

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

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #667eea;
}

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

.cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: #ffffff;
}

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

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

.services-detail {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    background-color: #f8f9fa;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    align-items: center;
    flex-wrap: wrap;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1 1 400px;
    background-color: #ecf0f1;
    border-radius: 12px;
    overflow: hidden;
}

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

.service-info {
    flex: 1 1 400px;
}

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

.service-info p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 25px;
}

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

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

.service-features li:before {
    content: "✓ ";
    color: #27ae60;
    font-weight: 700;
    margin-right: 10px;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 25px;
}

.price-label {
    font-size: 16px;
    color: #7f8c8d;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
}

.contact-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-info-card {
    background-color: #f8f9fa;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    flex: 1 1 500px;
    max-width: 600px;
}

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

.info-item {
    margin-bottom: 35px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #667eea;
}

.info-item p {
    color: #5a6c7d;
    line-height: 1.8;
}

.map-placeholder {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.map-card {
    background-color: #ffffff;
    padding: 80px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.map-card p {
    color: #5a6c7d;
    font-size: 18px;
}

.thanks-section {
    padding: 100px 0;
    background-color: #ffffff;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #f8f9fa;
    padding: 60px 50px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

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

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

.service-confirmation {
    font-weight: 600;
    color: #667eea;
    font-size: 20px;
    margin: 25px 0;
}

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

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

.btn-primary {
    background-color: #667eea;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #5568d3;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #ffffff;
    color: #667eea;
    border: 2px solid #667eea;
}

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

.legal-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.legal-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 60px 50px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.legal-card h2:first-child {
    margin-top: 0;
}

.legal-card h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-card p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-card ul, .legal-card ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-card ul li, .legal-card ol li {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

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

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

    .content-card, .content-card.reverse {
        flex-direction: column;
    }

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

    .page-header h1 {
        font-size: 32px;
    }

    .thanks-card h1 {
        font-size: 28px;
    }

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

    .footer-container {
        flex-direction: column;
    }
}