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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
    --text-dark: #1a1a2e;
    --text-light: #f5f5f5;
    --text-gray: #6b7280;
    --bg-light: #ffffff;
    --bg-gray: #f9fafb;
    --bg-dark: #1f2937;
    --border-color: #e5e7eb;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

a {
    text-decoration: none;
    color: inherit;
}

.ad-disclosure {
    background-color: var(--secondary-color);
    color: var(--text-light);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
}

.main-nav {
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--highlight-color);
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: var(--bg-gray);
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.hero-left h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 30px;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.hero-left p {
    font-size: 19px;
    line-height: 1.65;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 540px;
}

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

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

.cta-primary {
    display: inline-block;
    background-color: var(--highlight-color);
    color: var(--text-light);
    padding: 16px 38px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #d63651;
    transform: translateY(-2px);
}

.philosophy-section {
    padding: 100px 40px;
    background-color: var(--bg-light);
}

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

.content-right {
    flex: 1;
    padding-left: 40px;
}

.content-right h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 28px;
    color: var(--primary-color);
}

.content-right p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-gray);
    margin-bottom: 22px;
}

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

.image-left img {
    width: 100%;
    height: 500px;
}

.services-intro {
    padding: 90px 40px;
    background-color: var(--bg-gray);
}

.intro-text-centered {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.intro-text-centered h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.intro-text-centered p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
}

.services-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    flex: 0 1 calc(33.333% - 27px);
    min-width: 320px;
    background-color: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    background-color: #e5e7eb;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 24px 28px 14px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-gray);
    margin: 0 28px 20px;
    flex-grow: 1;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--highlight-color);
    margin: 0 28px 18px;
}

.service-card .select-service {
    margin: 0 28px 28px;
    padding: 13px 0;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-card .select-service:hover {
    background-color: var(--secondary-color);
}

.form-section {
    padding: 100px 40px;
    background-color: var(--bg-light);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

.contact-form {
    background-color: var(--bg-gray);
    padding: 50px 45px;
    border-radius: 12px;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background-color: var(--bg-light);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--highlight-color);
}

.form-group textarea {
    resize: vertical;
}

.selected-service-display {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 26px;
    border-left: 4px solid var(--highlight-color);
}

.selected-service-display p {
    font-size: 15px;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--highlight-color);
    color: var(--text-light);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.approach-split {
    display: flex;
    background-color: var(--bg-gray);
}

.image-side {
    flex: 1;
    background-color: #e5e7eb;
}

.image-side img {
    width: 100%;
    height: 100%;
    min-height: 550px;
}

.text-side {
    flex: 1;
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-side h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 26px;
    color: var(--primary-color);
}

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

.link-secondary {
    display: inline-block;
    margin-top: 16px;
    color: var(--highlight-color);
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.link-secondary:hover {
    color: #d63651;
}

.guarantee-section {
    padding: 100px 40px;
    background-color: var(--bg-light);
}

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

.guarantee-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.features-list {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.feature-item {
    flex: 1;
    max-width: 350px;
}

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

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

.main-footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 70px 40px 30px;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto 50px;
    display: flex;
    gap: 80px;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    color: #9ca3af;
}

.footer-column a {
    display: block;
    font-size: 15px;
    color: #9ca3af;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--text-light);
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .disclaimer {
    font-size: 13px;
    line-height: 1.65;
    color: #9ca3af;
    margin-bottom: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: #6b7280;
    text-align: center;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 25px 30px;
    box-shadow: 0 -4px 20px 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;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

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

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

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

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

.btn-accept {
    background-color: var(--highlight-color);
    color: var(--text-light);
}

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

.btn-reject {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

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

.page-header {
    padding: 80px 40px 60px;
    background-color: var(--bg-gray);
    text-align: center;
}

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

.page-header p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

.story-section {
    padding: 90px 40px;
    background-color: var(--bg-light);
}

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

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 26px;
    color: var(--primary-color);
}

.text-block p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-gray);
    margin-bottom: 20px;
}

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

.image-block img {
    width: 100%;
    height: 480px;
}

.values-section {
    padding: 90px 40px;
    background-color: var(--bg-gray);
}

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

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

.value-item {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 40px 35px;
    border-radius: 10px;
}

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

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

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

.process-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.process-visual {
    flex: 1;
    background-color: #f3f4f6;
    border-radius: 8px;
    overflow: hidden;
}

.process-visual img {
    width: 100%;
    height: 550px;
}

.process-steps {
    flex: 1;
}

.process-steps h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.step {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--border-color);
}

.step:last-child {
    border-bottom: none;
}

.step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.step p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
}

.expertise-section {
    padding: 90px 40px;
    background-color: var(--bg-gray);
}

.expertise-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 35px;
    color: var(--primary-color);
}

.expertise-content {
    max-width: 900px;
    margin: 0 auto;
}

.expertise-content p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-gray);
    margin-bottom: 20px;
    text-align: center;
}

.cta-section {
    padding: 100px 40px;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
}

.btn-primary {
    display: inline-block;
    background-color: var(--highlight-color);
    color: var(--text-light);
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

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

.service-detail-item {
    display: flex;
    align-items: center;
    gap: 70px;
    margin-bottom: 80px;
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 12px;
}

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

.service-image-side {
    flex: 1;
    background-color: #f3f4f6;
    border-radius: 8px;
    overflow: hidden;
}

.service-image-side img {
    width: 100%;
    height: 400px;
}

.service-text-side {
    flex: 1;
}

.service-text-side h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-text-side > p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 28px;
}

.service-includes {
    margin-bottom: 28px;
}

.service-includes h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--primary-color);
}

.service-includes ul {
    list-style: none;
    padding-left: 0;
}

.service-includes li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 10px;
    padding-left: 28px;
    position: relative;
}

.service-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: 700;
}

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

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

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

.additional-info {
    padding: 80px 40px;
    background-color: var(--bg-gray);
}

.info-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.info-container h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 26px;
    color: var(--primary-color);
}

.info-container p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.contact-layout {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 40px;
    display: flex;
    gap: 70px;
}

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

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

.info-item h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.info-item p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-gray);
}

.email-display {
    color: var(--primary-color);
    font-weight: 600;
}

.note {
    margin-top: 12px;
    font-size: 14px;
    font-style: italic;
}

.contact-visual {
    flex: 1;
    background-color: #f3f4f6;
    border-radius: 8px;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.response-info,
.visit-info {
    padding: 70px 40px;
    background-color: var(--bg-gray);
}

.response-content,
.visit-content {
    max-width: 800px;
    margin: 0 auto;
}

.response-content h2,
.visit-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.response-content p,
.visit-content p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-gray);
    margin-bottom: 18px;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px 100px;
}

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

.legal-section {
    margin-bottom: 45px;
}

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

.legal-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    margin-top: 24px;
    color: var(--primary-color);
}

.legal-section p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-gray);
    margin-bottom: 18px;
}

.legal-section ul {
    margin: 18px 0;
    padding-left: 28px;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.url-display {
    word-break: break-all;
}

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

.cookie-table th,
.cookie-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
}

.cookie-table th {
    background-color: var(--bg-gray);
    font-weight: 700;
    color: var(--primary-color);
}

.cookie-table td {
    color: var(--text-gray);
}

.thanks-section {
    padding: 100px 40px;
}

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

.thanks-content h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-content > p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.confirmation-details {
    background-color: var(--bg-gray);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.selected-service-confirmation p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.next-steps {
    text-align: left;
    margin-bottom: 50px;
}

.next-steps h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 35px;
    text-align: center;
    color: var(--primary-color);
}

.step-item {
    margin-bottom: 30px;
}

.step-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero-split,
    .split-container,
    .split-content,
    .approach-split,
    .process-layout,
    .contact-layout,
    .service-detail-item {
        flex-direction: column;
    }

    .hero-left h1 {
        font-size: 42px;
    }

    .services-grid {
        gap: 30px;
    }

    .service-card {
        flex: 0 1 calc(50% - 15px);
    }

    .features-list {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-wrap: wrap;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .nav-container {
        padding: 16px 24px;
    }

    .nav-links {
        gap: 24px;
        font-size: 14px;
    }

    .hero-left {
        padding: 60px 30px;
    }

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }

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

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