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

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

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

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

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

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

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

.navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-brand a {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.ad-disclosure {
    flex-grow: 1;
    text-align: center;
}

.disclosure-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffa500;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ffa500;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    z-index: 200;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    min-width: 280px;
    font-size: 14px;
}

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

.btn-primary,
.btn-secondary,
.btn-submit,
.btn-primary-large,
.select-service-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary,
.btn-submit,
.btn-primary-large {
    background-color: #ffa500;
    color: #ffffff;
}

.btn-primary:hover,
.btn-submit:hover,
.btn-primary-large:hover {
    background-color: #ff8c00;
    transform: translateY(-2px);
}

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

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

.btn-primary-large {
    padding: 16px 40px;
    font-size: 17px;
}

.hero-section {
    position: relative;
    margin-bottom: 80px;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    background-color: #1a1a1a;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3));
    padding: 60px 40px;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 800px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    max-width: 700px;
    line-height: 1.5;
    opacity: 0.95;
}

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

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

.intro-card {
    flex: 1;
    min-width: 260px;
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.intro-card:hover {
    transform: translateY(-8px);
}

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

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

.featured-events {
    padding: 100px 0;
}

.section-heading,
.centered-heading {
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.centered-heading {
    text-align: center;
}

.event-showcase {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.event-card-large {
    display: flex;
    gap: 48px;
    align-items: center;
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

.event-card-large.reverse {
    flex-direction: row-reverse;
}

.event-image-container {
    flex: 1;
    background-color: #e9ecef;
}

.event-image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

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

.event-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.event-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 24px;
}

.link-arrow {
    display: inline-block;
    color: #ffa500;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    color: #ff8c00;
    transform: translateX(4px);
}

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

.membership-preview {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    color: #ffffff;
}

.membership-content {
    text-align: center;
}

.membership-content h2 {
    font-size: 40px;
    margin-bottom: 24px;
    font-weight: 700;
}

.membership-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.cta-inline {
    margin-top: 40px;
}

.services-preview {
    padding: 100px 0;
    background-color: #f8f9fa;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-image-container {
    background-color: #e9ecef;
}

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

.service-info {
    padding: 32px;
}

.service-info h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #ffa500;
    margin-bottom: 20px;
}

.select-service-btn {
    width: 100%;
    background-color: #1a1a1a;
    color: #ffffff;
}

.select-service-btn:hover {
    background-color: #2c3e50;
}

.contact-form-section {
    padding: 100px 0;
}

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

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
    color: #1a1a1a;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #555;
    margin-bottom: 48px;
}

.inquiry-form {
    background-color: #f8f9fa;
    padding: 48px;
    border-radius: 12px;
}

.form-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.form-group {
    margin-bottom: 24px;
    flex: 1;
    min-width: 240px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 15px;
    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: #ffa500;
}

.btn-submit {
    width: 100%;
    margin-top: 16px;
    padding: 16px;
    font-size: 17px;
}

.page-hero-small {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 0 60px;
    text-align: center;
}

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

.lead-text {
    font-size: 20px;
    opacity: 0.9;
}

.about-story {
    padding: 100px 0;
}

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

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

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

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 34px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.story-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 24px;
}

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

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

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

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

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

.approach-section {
    padding: 100px 0;
}

.approach-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.approach-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 28px;
}

.cta-section-simple {
    padding: 100px 0;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.cta-section-simple h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-section-simple p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.services-detailed {
    padding: 80px 0;
}

.service-detail-card {
    margin-bottom: 80px;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

.service-detail-card.reverse {
    background-color: #f8f9fa;
}

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

.service-description {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 32px;
}

.service-detail-content h4 {
    font-size: 20px;
    margin-bottom: 16px;
    margin-top: 32px;
    color: #1a1a1a;
}

.benefits-list {
    list-style: none;
    margin-bottom: 32px;
}

.benefits-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffa500;
    font-weight: 700;
    font-size: 18px;
}

.price-display {
    margin: 40px 0;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-amount {
    font-size: 42px;
    font-weight: 700;
    color: #ffa500;
}

.price-period {
    font-size: 18px;
    color: #777;
}

.inquiry-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.inquiry-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
    color: #1a1a1a;
}

.inquiry-section > p {
    text-align: center;
    font-size: 17px;
    color: #555;
    margin-bottom: 48px;
}

.contact-info-section {
    padding: 100px 0;
}

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

.contact-info-blocks {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

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

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-email {
    color: #2c3e50;
    font-weight: 600;
}

.contact-additional {
    flex: 1;
}

.contact-additional h3 {
    font-size: 24px;
    margin-bottom: 16px;
    margin-top: 32px;
    color: #1a1a1a;
}

.contact-additional h3:first-child {
    margin-top: 0;
}

.contact-additional p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

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

.location-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.location-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.thanks-section {
    padding: 120px 0;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.confirmation-message {
    margin-bottom: 60px;
}

.confirmation-message p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

#service-confirmation {
    font-weight: 600;
    color: #ffa500;
    font-size: 20px;
}

.next-steps {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: left;
}

.next-steps h3 {
    font-size: 26px;
    margin-bottom: 24px;
    color: #1a1a1a;
    text-align: center;
}

.next-steps ul {
    list-style: none;
}

.next-steps li {
    padding: 16px 0 16px 36px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.next-steps li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ffa500;
    font-weight: 700;
}

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

.legal-page {
    padding: 80px 0;
}

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

.legal-page h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.legal-page ul {
    margin: 20px 0 20px 40px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 0;
}

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

.footer-columns {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

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

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffa500;
}

.footer-bottom {
    padding: 32px 0;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
}

.copyright {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

@media (max-width: 1024px) {
    .event-card-large,
    .event-card-large.reverse {
        flex-direction: column;
    }

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

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

@media (max-width: 768px) {
    .navigation {
        padding: 16px 20px;
    }

    .nav-menu {
        gap: 20px;
    }

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

    .hero-overlay p {
        font-size: 17px;
    }

    .section-heading,
    .centered-heading {
        font-size: 32px;
    }

    .event-content {
        padding: 32px;
    }

    .service-detail-card {
        padding: 40px 24px;
    }

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

    .footer-columns {
        gap: 40px;
    }
}