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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fafafa;
}

.ad-disclosure {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #f0f0f0;
    color: #666;
    text-align: center;
    padding: 8px 15px;
    font-size: 11px;
    z-index: 1000;
    border-bottom: 1px solid #ddd;
}

.layout-wrapper {
    display: flex;
    min-height: 100vh;
    margin-top: 35px;
}

.sidebar-nav {
    width: 240px;
    background-color: #fff;
    border-right: 1px solid #e0e0e0;
    padding: 40px 0;
    position: fixed;
    height: calc(100vh - 35px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    padding: 0 30px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.nav-links {
    list-style: none;
    flex-grow: 1;
}

.nav-links li {
    margin-bottom: 5px;
}

.nav-links a {
    display: block;
    padding: 12px 30px;
    color: #555;
    text-decoration: none;
    transition: all 0.2s;
}

.nav-links a:hover {
    color: #1a1a1a;
    background-color: #f8f8f8;
}

.nav-links a.active {
    color: #1a1a1a;
    background-color: #f0f0f0;
    font-weight: 500;
}

.nav-legal {
    padding: 30px 30px 20px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
}

.nav-legal a {
    font-size: 12px;
    color: #888;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.nav-legal a:hover {
    color: #555;
}

.nav-legal a.active {
    color: #1a1a1a;
    font-weight: 500;
}

.main-content {
    margin-left: 240px;
    flex: 1;
    padding: 50px 60px;
    max-width: 1400px;
}

.hero-card {
    position: relative;
    margin-bottom: 60px;
    border-radius: 16px;
    overflow: hidden;
    background-color: #2a2a2a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-image-wrapper {
    position: relative;
    height: 500px;
    background-color: #3a3a3a;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
}

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
}

.hero-text-overlay h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-text-overlay p {
    font-size: 18px;
    opacity: 0.9;
}

.intro-cards {
    margin-bottom: 70px;
}

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

.intro-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    flex: 1;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.intro-card h2 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.intro-card p {
    color: #555;
    line-height: 1.8;
}

.intro-card.highlight-card {
    padding: 0;
    overflow: hidden;
    background-color: #f5f5f5;
}

.intro-card.highlight-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-title {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.services-preview {
    margin-bottom: 80px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    width: calc(33.333% - 17px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 220px;
    background-color: #f0f0f0;
}

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

.service-info {
    padding: 28px;
}

.service-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 18px;
    line-height: 1.6;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.select-service-btn {
    width: 100%;
    padding: 12px 20px;
    background-color: #2a2a2a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.select-service-btn:hover {
    background-color: #1a1a1a;
}

.approach-section {
    margin-bottom: 70px;
}

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

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.approach-text p {
    margin-bottom: 18px;
    color: #555;
    line-height: 1.8;
}

.approach-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f0f0f0;
}

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

.booking-section {
    margin-bottom: 80px;
}

.booking-card {
    background: #fff;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    margin: 0 auto;
}

.booking-card h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

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

.form-notice {
    padding: 15px 20px;
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    color: #856404;
    font-size: 14px;
}

.form-notice.success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c2c2c;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.submit-btn {
    padding: 14px 30px;
    background-color: #2a2a2a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.submit-btn:hover:not(:disabled) {
    background-color: #1a1a1a;
}

.submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.info-cards {
    margin-bottom: 60px;
}

.info-card-grid {
    display: flex;
    gap: 30px;
}

.info-card {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.site-footer {
    background-color: #2a2a2a;
    color: #ddd;
    padding: 50px 0 30px;
    margin-top: 100px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 18px;
    font-size: 16px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
    color: #aaa;
}

.footer-section a {
    display: block;
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #fff;
}

.footer-disclaimer {
    padding-top: 30px;
    border-top: 1px solid #444;
    font-size: 12px;
    color: #999;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 2px solid #e0e0e0;
    padding: 25px 40px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    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: 14px;
    color: #555;
}

.cookie-content a {
    color: #2a2a2a;
    text-decoration: underline;
}

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

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

.cookie-accept {
    background-color: #2a2a2a;
    color: #fff;
}

.cookie-accept:hover {
    background-color: #1a1a1a;
}

.cookie-reject {
    background-color: #f0f0f0;
    color: #555;
}

.cookie-reject:hover {
    background-color: #e0e0e0;
}

.page-header {
    margin-bottom: 50px;
}

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

.page-header p {
    font-size: 18px;
    color: #666;
}

.services-detailed {
    margin-bottom: 80px;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

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

.service-detail-image {
    flex: 1;
    min-height: 350px;
    background-color: #f0f0f0;
}

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

.service-detail-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.price-tag {
    font-size: 26px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 20px;
}

.service-detail-content p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.about-hero {
    position: relative;
    margin-bottom: 70px;
}

.about-hero-content {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 12px;
}

.about-hero-content h1 {
    font-size: 38px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.about-hero-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.about-hero-image {
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f0f0f0;
}

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

.about-story {
    margin-bottom: 70px;
}

.story-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.story-text p {
    margin-bottom: 18px;
    color: #555;
    line-height: 1.8;
}

.story-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    background-color: #f0f0f0;
}

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

.values-section {
    margin-bottom: 70px;
}

.values-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

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

.value-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    width: calc(50% - 13px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

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

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

.team-section {
    margin-bottom: 70px;
}

.team-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.team-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    background-color: #f0f0f0;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.team-text p {
    margin-bottom: 18px;
    color: #555;
    line-height: 1.8;
}

.approach-detail {
    margin-bottom: 70px;
}

.approach-detail h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

.approach-steps {
    display: flex;
    gap: 25px;
}

.approach-step {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: #2a2a2a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.approach-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.approach-step p {
    color: #555;
    line-height: 1.7;
    font-size: 14px;
}

.philosophy-section {
    margin-bottom: 70px;
}

.philosophy-card {
    background: #fff;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-card h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.philosophy-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
}

.contact-header {
    margin-bottom: 50px;
    text-align: center;
}

.contact-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-header p {
    font-size: 18px;
    color: #666;
}

.contact-content {
    margin-bottom: 70px;
}

.contact-cards {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.contact-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-card p {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

.contact-note {
    font-size: 13px !important;
    color: #888 !important;
    margin-top: 10px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.hours-row span:first-child {
    color: #555;
}

.hours-row span:last-child {
    font-weight: 500;
    color: #1a1a1a;
}

.contact-info-section {
    margin-bottom: 60px;
}

.contact-info-section h2 {
    font-size: 32px;
    margin-bottom: 35px;
    color: #1a1a1a;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-block {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.info-block p {
    color: #555;
    line-height: 1.7;
}

.info-block a {
    color: #2a2a2a;
    text-decoration: underline;
}

.contact-image-section {
    margin-bottom: 60px;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    background-color: #f0f0f0;
}

.contact-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-cta {
    text-align: center;
    background: #fff;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-cta h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-cta p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.contact-cta a {
    color: #2a2a2a;
    text-decoration: underline;
}

.cta-button {
    display: inline-block;
    padding: 14px 35px;
    background-color: #2a2a2a;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
}

.cta-button:hover {
    background-color: #1a1a1a;
}

.thanks-container {
    margin-bottom: 70px;
}

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

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

.thanks-card h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-confirmation {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    font-size: 15px;
    color: #555;
}

.service-confirmation p {
    margin-bottom: 8px;
}

.service-confirmation p:last-child {
    margin-bottom: 0;
}

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

.btn-primary,
.btn-secondary {
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    display: inline-block;
}

.btn-primary {
    background-color: #2a2a2a;
    color: #fff;
}

.btn-primary:hover {
    background-color: #1a1a1a;
}

.btn-secondary {
    background-color: #f0f0f0;
    color: #555;
}

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

.next-steps {
    max-width: 1100px;
    margin: 0 auto;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 35px;
    text-align: center;
    color: #1a1a1a;
}

.steps-grid {
    display: flex;
    gap: 25px;
}

.step-card {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #2a2a2a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.step-card p {
    color: #555;
    line-height: 1.7;
    font-size: 14px;
}

.legal-content {
    background: #fff;
    border-radius: 12px;
    padding: 60px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    max-width: 900px;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.last-updated {
    color: #888;
    font-size: 14px;
    margin-bottom: 40px;
}

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

.legal-section h2 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.legal-section h3 {
    font-size: 20px;
    margin-bottom: 14px;
    margin-top: 24px;
    color: #2a2a2a;
}

.legal-section p {
    margin-bottom: 16px;
    color: #555;
    line-height: 1.8;
}

.legal-section ul {
    margin: 16px 0 16px 30px;
    color: #555;
}

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.cookie-table {
    margin-top: 30px;
}

.cookie-row {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
}

.cookie-name {
    font-weight: 700;
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.cookie-info p {
    font-size: 14px;
    margin-bottom: 6px;
}

@media (max-width: 1024px) {
    .sidebar-nav {
        width: 200px;
    }

    .main-content {
        margin-left: 200px;
        padding: 40px 30px;
    }

    .service-card {
        width: calc(50% - 13px);
    }

    .approach-content,
    .story-content,
    .team-content {
        flex-direction: column;
    }

    .approach-steps {
        flex-wrap: wrap;
    }

    .approach-step {
        width: calc(50% - 13px);
    }
}

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

    .main-content {
        margin-left: 0;
        padding: 30px 20px;
    }

    .hero-text-overlay {
        padding: 30px;
    }

    .hero-text-overlay h1 {
        font-size: 28px;
    }

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

    .service-card {
        width: 100%;
    }

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

    .contact-cards,
    .info-card-grid,
    .values-grid {
        flex-direction: column;
    }

    .value-card {
        width: 100%;
    }

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

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

    .approach-step {
        width: 100%;
    }

    .legal-content {
        padding: 30px 20px;
    }
}