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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #4a90a4;
    --accent-color: #d4a373;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --success-color: #00b894;
    --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 32px rgba(0,0,0,0.16);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Helvetica Neue', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.ad-disclosure {
    background-color: var(--bg-light);
    color: var(--text-light);
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid var(--border-color);
}

.header-floating {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 16px 0;
}

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

.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-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 15px;
}

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

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

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

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

.hero-card {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

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

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

.hero-image-card {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: var(--bg-light);
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    font-size: 15px;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-primary-large {
    display: inline-block;
    padding: 18px 42px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 18px;
    border: none;
    cursor: pointer;
}

.btn-primary-large:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.info-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

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

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

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

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

.about-card-layout {
    display: flex;
    gap: 48px;
    align-items: center;
    background-color: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

.about-content {
    flex: 1;
    padding: 48px;
}

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

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

.link-arrow {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.link-arrow:hover {
    gap: 12px;
}

.link-arrow::after {
    content: '→';
}

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

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

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 320px;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.service-content {
    padding: 32px;
}

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

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

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

.select-service {
    width: 100%;
}

.cta-card-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.cta-card-large {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-card-large h2 {
    font-size: 38px;
    color: var(--bg-white);
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

.form-card {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

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

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

.disclaimer-card {
    background-color: #fff9f0;
    border-left: 4px solid var(--accent-color);
    padding: 32px;
    border-radius: 8px;
}

.disclaimer-card h3 {
    color: var(--text-dark);
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 700;
}

.disclaimer-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 0 24px;
}

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

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

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

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--bg-white);
}

.email-text {
    color: inherit;
    word-break: break-all;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
    padding: 24px;
    z-index: 2000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    color: var(--text-dark);
    font-size: 15px;
}

.cookie-content a {
    color: var(--primary-color);
}

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

.btn-cookie,
.btn-cookie-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
}

.btn-cookie {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-cookie:hover {
    background-color: var(--secondary-color);
}

.btn-cookie-secondary {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.btn-cookie-secondary:hover {
    background-color: var(--border-color);
}

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

.thanks-card {
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

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

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

.service-info-box {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    margin: 32px 0;
    border-left: 4px solid var(--primary-color);
}

.thanks-card p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 16px;
}

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

.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: var(--bg-white);
    margin-bottom: 16px;
    font-weight: 700;
}

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

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

.service-detail-card {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-bottom: 60px;
    background-color: var(--bg-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

.service-detail-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

.service-detail-content {
    flex: 1;
    padding: 48px;
}

.service-detail-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.price-tag {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.service-detail-content h4 {
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 700;
}

.service-detail-content ul {
    list-style-position: inside;
    color: var(--text-light);
    margin-bottom: 24px;
}

.service-detail-content ul li {
    margin-bottom: 8px;
    font-size: 15px;
}

.cta-full {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    text-align: center;
}

.cta-full h2 {
    font-size: 38px;
    color: var(--bg-white);
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-full p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

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

.about-intro-card {
    margin-bottom: 60px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-intro-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    background-color: var(--bg-light);
}

.about-text-block {
    padding: 48px;
    background-color: var(--bg-white);
}

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

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

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

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

.philosophy-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

.philosophy-card p {
    color: var(--text-light);
    font-size: 16px;
}

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

.approach-content {
    display: flex;
    gap: 48px;
    align-items: center;
}

.approach-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background-color: var(--bg-light);
}

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

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

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

.approach-text ol {
    margin: 24px 0;
    padding-left: 24px;
    color: var(--text-light);
}

.approach-text ol li {
    margin-bottom: 16px;
    font-size: 16px;
}

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

.values-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.value-item {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.value-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 80px;
}

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

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

.cta-simple {
    padding: 80px 0;
    background-color: var(--bg-white);
    text-align: center;
}

.cta-simple h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-simple p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

.contact-layout {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

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

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

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

.contact-item h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

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

.contact-note {
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.contact-note p {
    color: var(--text-light);
    font-size: 15px;
}

.contact-map-placeholder {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background-color: var(--bg-light);
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.legal-intro {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 40px;
}

.legal-content h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

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

.legal-content h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 700;
}

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

.legal-content ul,
.legal-content ol {
    margin: 16px 0 24px 24px;
    color: var(--text-light);
}

.legal-content ul li,
.legal-content ol li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.7;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

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

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

@media (max-width: 768px) {
    .nav-main {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-md);
        gap: 16px;
    }

    .nav-main.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        flex-direction: column;
        gap: 32px;
    }

    .hero-text-card {
        padding: 32px;
    }

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

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

    .about-card-layout {
        flex-direction: column;
    }

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

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

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

    .service-detail-content {
        padding: 32px;
    }

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

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

    .cookie-content {
        flex-direction: column;
        gap: 16px;
    }

    .cookie-content p {
        min-width: 100%;
    }

    .thanks-card {
        padding: 40px 24px;
    }

    .thanks-actions {
        flex-direction: column;
        width: 100%;
    }

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}