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

:root {
    --primary-color: #2d3e50;
    --secondary-color: #5a6c7d;
    --accent-color: #8b5cf6;
    --text-dark: #1a1a1a;
    --text-light: #4a5568;
    --text-muted: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

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

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.header-main {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

.nav-main a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-main a:hover {
    color: var(--accent-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.hero-card {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.hero-card-inner {
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-card-content {
    flex: 1;
}

.hero-card-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-card-content p {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.hero-card-visual {
    flex: 0 0 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.intro-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.info-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.info-card h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.3;
}

.info-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 17px;
}

.visual-card {
    flex: 0 0 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.story-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

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

.story-card {
    display: flex;
    gap: 48px;
    align-items: center;
}

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

.story-image {
    flex: 0 0 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.story-content {
    flex: 1;
}

.story-content h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.story-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 17px;
}

.service-cards {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.section-title {
    font-size: 40px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
}

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

.service-card {
    flex: 0 0 calc(50% - 16px);
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-visual {
    height: 240px;
    overflow: hidden;
}

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

.service-info {
    padding: 32px;
}

.service-info h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.service-info p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 16px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 14px 24px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-select-service:hover {
    background-color: #7c3aed;
    transform: scale(1.02);
}

.form-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.form-intro p {
    color: var(--text-light);
    font-size: 17px;
}

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

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-submit {
    padding: 16px 32px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #7c3aed;
    transform: scale(1.02);
}

.trust-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.trust-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.trust-content p {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-main {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: white;
}

.footer-disclaimer {
    padding: 24px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin-bottom: 32px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    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;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.btn-cookie-accept {
    background-color: var(--accent-color);
    color: white;
}

.btn-cookie-accept:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.btn-cookie-reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.page-hero {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

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

.page-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.about-intro {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.about-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.about-content p {
    color: var(--text-light);
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-visual {
    flex: 0 0 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.approach-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.approach-section h2 {
    font-size: 40px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
}

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

.approach-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.approach-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.approach-card p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
}

.expertise-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.expertise-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.expertise-visual {
    flex: 0 0 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.expertise-content {
    flex: 1;
}

.expertise-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.expertise-content p {
    color: var(--text-light);
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.values-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.values-section h2 {
    font-size: 40px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
}

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

.value-item {
    flex: 0 0 calc(50% - 16px);
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.value-item h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.value-item p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
}

.cta-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.cta-card {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 60px 40px;
    border-radius: 12px;
    color: white;
}

.cta-card h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-card p {
    font-size: 18px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.95);
}

.btn-cta {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-cta:hover {
    background-color: #7c3aed;
    transform: scale(1.05);
}

.services-detail {
    padding: 80px 0;
    background-color: var(--bg-white);
}

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

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.service-detail-content p {
    color: var(--text-light);
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-detail-content ul {
    margin: 24px 0;
    padding-left: 24px;
}

.service-detail-content li {
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 16px;
}

.service-price-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.price-label {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 600;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
}

.service-detail-visual {
    flex: 0 0 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.process-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.process-section h2 {
    font-size: 40px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
}

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

.process-step {
    flex: 1;
    background-color: var(--bg-white);
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 16px;
    opacity: 0.3;
}

.process-step h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.process-step p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

.contact-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

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

.contact-info-card {
    flex: 0 0 400px;
    background-color: var(--bg-light);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-info-card h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-info-card > p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

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

.contact-detail h3 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-detail p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

.email-display {
    font-weight: 500;
    color: var(--text-dark);
}

.contact-note {
    padding: 20px;
    background-color: var(--bg-white);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.contact-note p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form-card {
    flex: 1;
    background-color: var(--bg-light);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-form-card h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 32px;
}

.thanks-section {
    padding: 120px 0;
    background-color: var(--bg-white);
}

.thanks-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--bg-light);
    padding: 60px 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

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

.thanks-card h1 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.thanks-info {
    padding: 24px;
    background-color: var(--bg-white);
    border-radius: 8px;
    margin-bottom: 32px;
}

.thanks-info p {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.6;
}

#selectedServiceInfo {
    font-weight: 600;
    color: var(--accent-color);
}

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

.btn-primary {
    padding: 14px 32px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #7c3aed;
    transform: scale(1.02);
}

.btn-secondary {
    padding: 14px 32px;
    background-color: transparent;
    color: var(--accent-color);
    text-decoration: none;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: white;
    transform: scale(1.02);
}

.legal-page {
    padding: 60px 0 80px;
    background-color: var(--bg-white);
}

.legal-page h1 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 800;
}

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

.legal-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-top: 28px;
    margin-bottom: 16px;
    font-weight: 600;
}

.legal-content h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-content p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content li {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.7;
}

.legal-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.no-link {
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero-card-inner {
        flex-direction: column;
        gap: 40px;
    }

    .hero-card-visual {
        flex: 1;
        width: 100%;
    }

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

    .visual-card {
        flex: 1;
        height: 300px;
    }

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

    .story-image {
        flex: 1;
        width: 100%;
        height: 300px;
    }

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

    .service-card {
        flex: 1;
    }

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

    .about-layout,
    .expertise-layout {
        flex-direction: column;
    }

    .about-visual,
    .expertise-visual {
        flex: 1;
        width: 100%;
    }

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

    .value-item {
        flex: 1;
    }

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

    .service-detail-visual {
        flex: 1;
        width: 100%;
    }

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

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

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

@media (max-width: 768px) {
    .nav-main {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

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

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

    .section-title {
        font-size: 32px;
    }

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

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-card {
        padding: 40px 0;
    }

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

    .intro-section,
    .story-section,
    .service-cards,
    .form-section,
    .trust-section {
        padding: 60px 0;
    }

    .info-card {
        padding: 32px;
    }

    .form-card {
        padding: 32px 24px;
    }
}