* {
    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: #2c2c2c;
    background-color: #ffffff;
}

.main-nav {
    background-color: #2d5a3d;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.8;
}

.ad-notice {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    border-left: 1px solid rgba(255,255,255,0.3);
    padding-left: 2rem;
}

.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    background-color: #f5f7f6;
}

.hero-content {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #1a3a2a;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #4a6a5a;
    margin-bottom: 2.5rem;
    max-width: 650px;
}

.hero-image {
    width: 100%;
    overflow: hidden;
    background-color: #d4e0d8;
}

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

.cta-primary {
    display: inline-block;
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #1f4029;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2d5a3d;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border: 2px solid #2d5a3d;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2d5a3d;
    color: #ffffff;
}

.intro-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.content-wrapper-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.intro-section h2 {
    font-size: 2.5rem;
    color: #1a3a2a;
    margin-bottom: 2rem;
    font-weight: 700;
}

.intro-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.services-preview {
    background-color: #f9faf9;
    padding: 5rem 2rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #1a3a2a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #5a6a5a;
}

.service-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

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

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

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #e5ebe8;
}

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

.service-info {
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.6rem;
    color: #1a3a2a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-info p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.4rem;
    color: #2d5a3d;
    font-weight: 700;
}

.cta-section {
    text-align: center;
    margin-top: 4rem;
}

.approach-section {
    background-color: #2d5a3d;
    padding: 5rem 2rem;
}

.approach-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.approach-text {
    flex: 1 1 500px;
}

.approach-text h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 700;
}

.approach-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #e5ebe8;
    margin-bottom: 1.5rem;
}

.approach-image {
    flex: 1 1 400px;
    background-color: #1f4029;
}

.approach-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
}

.registration-section {
    background-color: #ffffff;
    padding: 6rem 2rem;
}

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

.form-container h2 {
    font-size: 2.5rem;
    color: #1a3a2a;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 0.95rem;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    font-size: 1rem;
    border: 2px solid #d4e0d8;
    border-radius: 4px;
    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: #2d5a3d;
}

.btn-submit {
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

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

.location-section {
    background-color: #f5f7f6;
    padding: 5rem 2rem;
}

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

.location-wrapper h2 {
    font-size: 2.5rem;
    color: #1a3a2a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.location-wrapper > p {
    font-size: 1.1rem;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.location-details {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.location-info {
    text-align: left;
}

.location-info h3 {
    font-size: 1.3rem;
    color: #2d5a3d;
    margin-bottom: 1rem;
    font-weight: 700;
}

.location-info p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.main-footer {
    background-color: #1a3a2a;
    color: #ffffff;
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1 1 200px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-column p {
    color: #b8c8bf;
    font-size: 0.95rem;
}

.footer-column a {
    display: block;
    color: #b8c8bf;
    text-decoration: none;
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.disclaimer {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #8a9a8f;
    margin-bottom: 1.5rem;
}

.footer-bottom p:last-child {
    font-size: 0.9rem;
    color: #8a9a8f;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a3a2a;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    color: #ffffff;
    font-size: 0.95rem;
    flex: 1 1 400px;
}

.cookie-content a {
    color: #a8d8b8;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cookie.accept {
    background-color: #2d5a3d;
    color: #ffffff;
}

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

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

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

.page-hero {
    background-color: #2d5a3d;
    padding: 5rem 2rem 4rem;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-hero-content p {
    font-size: 1.3rem;
    color: #b8d8c8;
}

.story-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.story-section h2 {
    font-size: 2.5rem;
    color: #1a3a2a;
    margin-bottom: 2rem;
    font-weight: 700;
}

.story-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.team-section {
    background-color: #f9faf9;
    padding: 5rem 2rem;
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.team-member {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.member-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background-color: #e5ebe8;
}

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

.member-info {
    padding: 2rem;
}

.member-info h3 {
    font-size: 1.5rem;
    color: #1a3a2a;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.member-role {
    font-size: 1rem;
    color: #2d5a3d;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-info p:last-child {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5a5a5a;
}

.values-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.values-content {
    max-width: 1100px;
    margin: 0 auto;
}

.values-content h2 {
    font-size: 2.5rem;
    color: #1a3a2a;
    margin-bottom: 3rem;
    font-weight: 700;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-item {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 250px;
}

.value-item h3 {
    font-size: 1.6rem;
    color: #2d5a3d;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a5a5a;
}

.facility-section {
    background-color: #f5f7f6;
    padding: 5rem 2rem;
}

.facility-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.facility-text {
    flex: 1 1 500px;
}

.facility-text h2 {
    font-size: 2.5rem;
    color: #1a3a2a;
    margin-bottom: 2rem;
    font-weight: 700;
}

.facility-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.facility-image {
    flex: 1 1 400px;
    background-color: #d4e0d8;
}

.facility-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.cta-bottom {
    background-color: #2d5a3d;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 700;
}

.services-detail-section {
    background-color: #ffffff;
    padding: 3rem 0;
}

.service-detail {
    padding: 4rem 2rem;
}

.service-detail:nth-child(even) {
    background-color: #f9faf9;
}

.service-detail-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

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

.service-detail-text {
    flex: 1 1 500px;
}

.service-detail-text h2 {
    font-size: 2.3rem;
    color: #1a3a2a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-detail-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.service-meta {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f5f7f6;
    border-radius: 6px;
}

.meta-item {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #4a4a4a;
}

.meta-item:last-child {
    margin-bottom: 0;
}

.pricing-box {
    margin-top: 2rem;
    padding: 2rem;
    background-color: #e8f3ed;
    border-left: 4px solid #2d5a3d;
    border-radius: 4px;
}

.price-value {
    font-size: 2rem;
    color: #2d5a3d;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: #5a6a5a;
}

.service-detail-image {
    flex: 1 1 400px;
    background-color: #e5ebe8;
}

.service-detail-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
}

.additional-info {
    background-color: #f5f7f6;
    padding: 5rem 2rem;
}

.info-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.info-wrapper h2 {
    font-size: 2.5rem;
    color: #1a3a2a;
    margin-bottom: 3rem;
    font-weight: 700;
    text-align: center;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.info-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.info-card h3 {
    font-size: 1.4rem;
    color: #2d5a3d;
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a5a5a;
}

.registration-cta {
    background-color: #2d5a3d;
    padding: 4rem 2rem;
    text-align: center;
}

.contact-section {
    background-color: #ffffff;
    padding: 4rem 2rem;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.contact-info-block h2 {
    font-size: 2.5rem;
    color: #1a3a2a;
    margin-bottom: 3rem;
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 3rem;
}

.contact-detail h3 {
    font-size: 1.4rem;
    color: #2d5a3d;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-detail p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.email-display {
    font-weight: 600;
    color: #2d5a3d;
}

.note {
    font-size: 0.9rem;
    color: #7a7a7a;
    font-style: italic;
    margin-top: 1rem;
}

.contact-image-block {
    flex: 1 1 400px;
    background-color: #e5ebe8;
}

.contact-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.questions-section {
    background-color: #f9faf9;
    padding: 5rem 2rem;
}

.questions-section h2 {
    font-size: 2.5rem;
    color: #1a3a2a;
    margin-bottom: 3rem;
    font-weight: 700;
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    font-size: 1.4rem;
    color: #2d5a3d;
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.thanks-section {
    background-color: #f9faf9;
    padding: 6rem 2rem;
    min-height: 600px;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-container h1 {
    font-size: 2.8rem;
    color: #1a3a2a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.thanks-info {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 3rem;
}

.next-steps {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    margin: 3rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.next-steps h2 {
    font-size: 2rem;
    color: #1a3a2a;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    text-align: left;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #2d5a3d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.3rem;
    color: #1a3a2a;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a5a5a;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2d5a3d;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border: 2px solid #2d5a3d;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2d5a3d;
    color: #ffffff;
}

.legal-page {
    background-color: #ffffff;
    padding: 4rem 2rem;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    color: #1a3a2a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.last-updated {
    font-size: 0.95rem;
    color: #7a7a7a;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    color: #2d5a3d;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 1.3rem;
    color: #1a3a2a;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-container h4 {
    font-size: 1.1rem;
    color: #2d5a3d;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.legal-container p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.legal-container ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-container li {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #d4e0d8;
}

.cookie-table th {
    background-color: #f5f7f6;
    font-weight: 700;
    color: #1a3a2a;
}

.cookie-table td {
    color: #4a4a4a;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .team-member {
        flex: 1 1 100%;
    }

    .value-item {
        flex: 1 1 100%;
    }

    .approach-content,
    .facility-wrapper,
    .service-detail-content,
    .contact-wrapper {
        flex-direction: column;
    }

    .nav-links {
        gap: 1rem;
    }

    .ad-notice {
        border-left: none;
        padding-left: 0;
        margin-top: 0.5rem;
    }

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

    .info-card {
        flex: 1 1 100%;
    }
}