* {
    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;
}

.main-nav {
    background-color: #1a1a1a;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    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;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f8f9fa;
    letter-spacing: -0.5px;
}

.ad-label {
    font-size: 0.75rem;
    color: #95a5a6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.3rem 0.8rem;
    background-color: #2c3e50;
    border-radius: 3px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

.hero-section {
    position: relative;
    height: 85vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #34495e;
}

.hero-section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.5;
    color: #ecf0f1;
}

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

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

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

.intro-section p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

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

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

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

.section-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.service-blocks {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-block {
    display: flex;
    align-items: center;
    gap: 3rem;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-block img {
    width: 45%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #ecf0f1;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.service-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1.5rem 0;
}

.btn-select {
    padding: 0.9rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-select:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

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

.values-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #34495e;
}

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

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

.form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

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

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #34495e;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #ffffff;
    color: #2c3e50;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.closing-section {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #34495e;
}

.closing-section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.closing-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
}

.closing-overlay h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.closing-overlay p {
    font-size: 1.3rem;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #95a5a6;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 0.8rem;
}

.disclaimer {
    font-size: 0.85rem;
    font-style: italic;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    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 {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #7f8c8d;
    transform: translateY(-2px);
}

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

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.2rem;
    color: #ecf0f1;
}

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

.story-section .content-wrapper {
    max-width: 1100px;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.story-section img {
    width: 45%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #ecf0f1;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.story-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 1.2rem;
}

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

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-weight: 700;
}

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

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.team-member img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.team-member h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 0.8rem;
    color: #2c3e50;
    font-weight: 700;
}

.team-member p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #34495e;
    padding: 0 1.5rem 1.5rem;
}

.philosophy-section {
    padding: 5rem 2rem;
    background-color: #ecf0f1;
}

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

.philosophy-wrapper h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-weight: 700;
}

.philosophy-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.philosophy-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.philosophy-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.philosophy-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #34495e;
}

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

.awards-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

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

.awards-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 1.2rem;
}

.services-detailed {
    padding: 4rem 2rem;
}

.service-detail-block {
    max-width: 1100px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

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

.service-image-container {
    width: 45%;
}

.service-image-container img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #ecf0f1;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
    font-weight: 700;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 2rem;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: #34495e;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 1.3rem;
}

.price-display {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1.5rem 0;
}

.btn-primary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.cta-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

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

.cta-section p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 2rem;
}

.btn-large {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

.contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
    font-weight: 700;
}

.contact-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 0.5rem;
}

.email-display {
    font-weight: 600;
    color: #3498db;
}

.note {
    font-size: 0.9rem;
    font-style: italic;
    color: #7f8c8d;
}

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

.location-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

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

.location-description p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 1.2rem;
}

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

.visit-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

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

.visit-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 1.2rem;
}

.accessibility-section {
    padding: 5rem 2rem;
    background-color: #ecf0f1;
}

.accessibility-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-weight: 700;
}

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

.accessibility-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.accessibility-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.accessibility-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #34495e;
}

.thanks-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.service-confirmation {
    font-size: 1rem;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 2rem;
}

.thanks-next {
    text-align: left;
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.thanks-next h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.thanks-next ul {
    list-style: none;
    padding-left: 0;
}

.thanks-next li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: #34495e;
}

.thanks-next li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

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

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #95a5a6;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
    transform: translateY(-2px);
}

.legal-page {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    min-height: 70vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.legal-update {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.legal-container h2 {
    font-size: 1.7rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
    font-weight: 700;
}

.legal-container h4 {
    font-size: 1.1rem;
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
    color: #34495e;
    font-weight: 700;
}

.legal-container p {
    font-size: 1rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 1rem;
}

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-container li {
    font-size: 1rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 0.7rem;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-overlay h1 {
        font-size: 2.5rem;
    }

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

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

    .service-block img {
        width: 100%;
        height: 300px;
    }

    .story-section .content-wrapper {
        flex-direction: column;
    }

    .story-section img {
        width: 100%;
        height: 300px;
    }

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

    .service-image-container {
        width: 100%;
    }

    .service-image-container img {
        height: 300px;
    }

    .thanks-container {
        padding: 2.5rem 1.5rem;
    }

    .legal-container {
        padding: 2rem 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}