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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
}

.page-wrapper {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.navbar {
    background-color: #ffffff;
    border-bottom: 2px solid #D33175;
    padding: 16px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.logo {
    display: table-cell;
    vertical-align: middle;
    width: 30%;
    font-size: 24px;
    font-weight: bold;
    color: #D33175;
    text-decoration: none;
}

.nav-menu-wrapper {
    display: table-cell;
    vertical-align: middle;
    width: 70%;
    text-align: right;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: #D33175;
    cursor: pointer;
    position: absolute;
    right: 26px;
    top: 16px;
    z-index: 1001;
}

.main-nav {
    display: inline-block;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.main-nav.visible {
    opacity: 1;
    visibility: visible;
}

.nav-list {
    list-style: none;
    display: table;
    table-layout: auto;
}

.nav-item {
    display: table-cell;
    padding: 0 16px;
}

.nav-link {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
    padding: 10px 0;
}

.nav-link:hover {
    color: #D33175;
}

.masthead {
    background-color: #732B49;
    background-image: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    padding: 110px 0 68px 0;
    text-align: center;
    position: relative;
    margin-top: 60px;
}

.masthead::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(211, 49, 117, 0.85), rgba(115, 43, 73, 0.85));
}

.masthead .container {
    position: relative;
    z-index: 1;
}

.masthead h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 26px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.masthead p {
    font-size: 20px;
    margin-bottom: 42px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-button {
    display: inline-block;
    background-color: #ffffff;
    color: #D33175;
    padding: 16px 42px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-button:hover {
    background-color: #F094BA;
    color: #ffffff;
    transform: translateY(-2px);
}

.article-section {
    padding: 68px 0;
}

.article-section h2 {
    font-size: 36px;
    color: #732B49;
    margin-bottom: 42px;
    text-align: center;
}

.article-section h3 {
    font-size: 24px;
    color: #D33175;
    margin-bottom: 16px;
    margin-top: 26px;
}

.article-section p {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.8;
}

.content-table {
    display: table;
    width: 100%;
    table-layout: fixed;
    margin: 42px 0;
}

.table-row {
    display: table-row;
}

.table-cell {
    display: table-cell;
    vertical-align: top;
    padding: 26px;
}

.table-cell-large {
    width: 65%;
}

.table-cell-small {
    width: 35%;
}

.content-card {
    background-color: #ffffff;
    border: 1px solid #F094BA;
    border-radius: 8px;
    padding: 26px;
    margin-bottom: 26px;
    transition: box-shadow 0.3s ease;
}

.content-card:hover {
    box-shadow: 0 4px 12px rgba(211, 49, 117, 0.2);
}

.content-card h3 {
    font-size: 22px;
    color: #D33175;
    margin-bottom: 16px;
}

.content-card p {
    font-size: 15px;
    line-height: 1.7;
}

.information-box {
    background-color: #f9f9f9;
    border-left: 4px solid #D33175;
    padding: 26px;
    margin: 26px 0;
}

.information-box h4 {
    font-size: 20px;
    color: #732B49;
    margin-bottom: 10px;
}

.feature-panel {
    display: table;
    width: 100%;
    border: 2px solid #F094BA;
    border-radius: 6px;
    margin-bottom: 26px;
    overflow: hidden;
}

.feature-panel-header {
    display: table-row;
    background-color: #D33175;
    color: #ffffff;
}

.feature-panel-header h3 {
    display: table-cell;
    padding: 16px;
    vertical-align: middle;
    font-size: 20px;
}

.feature-panel-body {
    display: table-row;
}

.feature-panel-body td {
    display: table-cell;
    padding: 26px;
    vertical-align: top;
}

.section-grid {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-spacing: 26px 26px;
}

.grid-item {
    display: table-cell;
    vertical-align: top;
    width: 33.333%;
    background-color: #ffffff;
    padding: 26px;
    border: 1px solid #F094BA;
    border-radius: 6px;
}

.grid-item img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 16px;
}

.grid-item h4 {
    font-size: 20px;
    color: #D33175;
    margin-bottom: 10px;
}

.layout-wrapper {
    display: table;
    width: 100%;
    table-layout: fixed;
    margin: 42px 0;
}

.content-flow {
    display: table;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.action-link {
    display: inline-block;
    background-color: #D33175;
    color: #ffffff;
    padding: 12px 26px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.action-link:hover {
    background-color: #732B49;
}

.submit-form {
    background-color: #D33175;
    color: #ffffff;
    padding: 16px 42px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-form:hover {
    background-color: #732B49;
}

.detail-section {
    padding: 68px 0;
    background-color: #f5f5f5;
}

.detail-card {
    background-color: #ffffff;
    padding: 26px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 26px;
}

.image-scroll-container {
    height: 400px;
    overflow-y: scroll;
    border: 2px solid #F094BA;
    border-radius: 6px;
    padding: 10px;
}

.image-scroll-container img {
    width: 100%;
    height: auto;
    margin-bottom: 16px;
    border-radius: 4px;
}

.contact-form-section {
    background-color: #ffffff;
    padding: 68px 0;
}

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

.form-table {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.form-row {
    display: table-row;
}

.form-cell {
    display: table-cell;
    padding: 10px 0;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #732B49;
    margin-bottom: 10px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px;
    border: 2px solid #F094BA;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.footer {
    background-color: #732B49;
    color: #ffffff;
    padding: 42px 0 26px 0;
}

.footer-content {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.footer-column {
    display: table-cell;
    vertical-align: top;
    width: 33.333%;
    padding: 0 26px;
}

.footer h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #F094BA;
}

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

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

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 26px;
    padding-top: 16px;
    text-align: center;
    font-size: 14px;
}

.testimonial-section {
    background-color: #f9f9f9;
    padding: 68px 0;
}

.testimonial-wrapper {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.testimonial-item {
    display: table-cell;
    vertical-align: top;
    width: 33.333%;
    padding: 26px;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 26px;
    border-radius: 8px;
    border-left: 4px solid #D33175;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #D33175;
}

.gallery-grid {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-spacing: 16px;
}

.gallery-row {
    display: table-row;
}

.gallery-cell {
    display: table-cell;
    width: 25%;
    vertical-align: top;
}

.gallery-cell img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.gallery-cell img:hover {
    transform: scale(1.05);
}

.faq-section {
    padding: 68px 0;
    background-color: #ffffff;
}

.faq-item {
    border: 1px solid #F094BA;
    border-radius: 6px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    background-color: #f9f9f9;
    padding: 16px;
    cursor: pointer;
    font-weight: 600;
    color: #732B49;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #F094BA;
    color: #ffffff;
}

.faq-answer {
    padding: 16px;
    display: none;
    line-height: 1.7;
}

.faq-answer.active {
    display: block;
}

.blog-grid {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-spacing: 26px;
}

.blog-post {
    display: table-cell;
    width: 50%;
    vertical-align: top;
    background-color: #ffffff;
    border: 1px solid #F094BA;
    border-radius: 8px;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 26px;
}

.blog-title {
    font-size: 22px;
    color: #D33175;
    margin-bottom: 10px;
}

.blog-excerpt {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-meta {
    font-size: 14px;
    color: #666666;
}

.location-card {
    background-color: #ffffff;
    border: 2px solid #F094BA;
    border-radius: 8px;
    padding: 26px;
    margin-bottom: 26px;
}

.location-card h3 {
    color: #D33175;
    font-size: 24px;
    margin-bottom: 16px;
}

.location-details {
    display: table;
    width: 100%;
}

.location-detail-row {
    display: table-row;
}

.location-label {
    display: table-cell;
    width: 30%;
    font-weight: 600;
    color: #732B49;
    padding: 10px 0;
}

.location-value {
    display: table-cell;
    width: 70%;
    padding: 10px 0;
}

.news-article {
    background-color: #ffffff;
    border-left: 4px solid #D33175;
    padding: 26px;
    margin-bottom: 26px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.news-date {
    font-size: 14px;
    color: #666666;
    margin-bottom: 10px;
}

.news-headline {
    font-size: 26px;
    color: #732B49;
    margin-bottom: 16px;
}

.news-summary {
    font-size: 16px;
    line-height: 1.7;
}

.click-here {
    display: inline-block;
    background-color: #F094BA;
    color: #732B49;
    padding: 10px 26px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.click-here:hover {
    background-color: #D33175;
    color: #ffffff;
}

@media screen and (max-width: 1050px) {
    .masthead h1 {
        font-size: 40px;
    }

    .article-section h2 {
        font-size: 32px;
    }

    .table-cell-large {
        width: 60%;
    }

    .table-cell-small {
        width: 40%;
    }

    .footer-column {
        padding: 0 16px;
    }
}

@media screen and (max-width: 850px) {
    .nav-container {
        display: block;
    }

    .logo {
        display: block;
        width: 100%;
        text-align: center;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu-wrapper {
        display: block;
        width: 100%;
    }

    .main-nav {
        display: block;
        opacity: 0;
        visibility: hidden;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        padding: 16px 0;
    }

    .main-nav.visible {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        display: block;
    }

    .nav-item {
        display: block;
        padding: 0;
        border-bottom: 1px solid #F094BA;
    }

    .nav-link {
        padding: 16px 26px;
        text-align: center;
    }

    .masthead {
        padding: 68px 0 42px 0;
    }

    .masthead h1 {
        font-size: 32px;
    }

    .masthead p {
        font-size: 18px;
    }

    .content-table,
    .table-row,
    .table-cell {
        display: block;
        width: 100%;
    }

    .table-cell-large,
    .table-cell-small {
        width: 100%;
    }

    .section-grid,
    .grid-item {
        display: block;
        width: 100%;
        margin-bottom: 26px;
    }

    .footer-content,
    .footer-column {
        display: block;
        width: 100%;
        margin-bottom: 26px;
    }

    .testimonial-wrapper,
    .testimonial-item {
        display: block;
        width: 100%;
        margin-bottom: 26px;
    }

    .gallery-grid,
    .gallery-row,
    .gallery-cell {
        display: block;
        width: 100%;
        margin-bottom: 16px;
    }

    .blog-grid,
    .blog-post {
        display: block;
        width: 100%;
        margin-bottom: 26px;
    }
}

@media screen and (max-width: 575px) {
    .container {
        width: 95%;
    }

    .masthead h1 {
        font-size: 26px;
    }

    .masthead p {
        font-size: 16px;
    }

    .article-section h2 {
        font-size: 28px;
    }

    .contact-button,
    .submit-form {
        padding: 12px 26px;
        font-size: 16px;
    }

    .content-card,
    .information-box {
        padding: 16px;
    }
}
