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

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

body {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 26px;
    line-height: 1.618;
    color: #333333;
    background-color: #ffffff;
}

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

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

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

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

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

.navbar {
    display: table;
    width: 100%;
    background-color: #2BC0DE;
    padding: 16px 0;
    position: relative;
    table-layout: fixed;
}

.nav-container {
    display: table;
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    table-layout: fixed;
}

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

.logo-cell {
    display: table-cell;
    vertical-align: middle;
    width: 30%;
    padding: 10px 16px;
}

.logo {
    font-size: 42px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
}

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

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

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

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

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 16px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: #ffffff;
    cursor: pointer;
    position: absolute;
    right: 26px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.masthead {
    display: table;
    width: 100%;
    background: linear-gradient(135deg, #2BC0DE 0%, #B91D51 100%);
    padding: 68px 0;
    color: #ffffff;
    table-layout: fixed;
}

.masthead-container {
    display: table;
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    table-layout: fixed;
}

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

.masthead-cell {
    display: table-cell;
    vertical-align: middle;
    padding: 42px;
}

.masthead-title {
    font-size: 110px;
    font-weight: bold;
    margin-bottom: 26px;
    line-height: 1.2;
}

.masthead-subtitle {
    font-size: 42px;
    margin-bottom: 42px;
    line-height: 1.4;
}

.masthead-text {
    font-size: 26px;
    margin-bottom: 42px;
    line-height: 1.618;
}

.action-link {
    display: inline-block;
    background-color: #F1C265;
    color: #333333;
    padding: 16px 42px;
    text-decoration: none;
    font-size: 26px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.article-section {
    display: table;
    width: 100%;
    padding: 68px 0;
    table-layout: fixed;
}

.section-header {
    text-align: center;
    margin-bottom: 42px;
}

.section-title {
    font-size: 68px;
    color: #2BC0DE;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 26px;
    color: #666666;
}

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

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

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

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

.content-card {
    background-color: #f0f0f0;
    padding: 42px;
    border-left: 4px solid #2BC0DE;
    margin-bottom: 26px;
}

.card-title {
    font-size: 42px;
    color: #2BC0DE;
    margin-bottom: 16px;
}

.card-text {
    font-size: 26px;
    line-height: 1.618;
    color: #333333;
}

.information-box {
    display: table;
    width: 100%;
    background-color: #ffffff;
    border: 2px solid #2BC0DE;
    padding: 42px;
    margin-bottom: 26px;
    table-layout: fixed;
}

.box-header {
    font-size: 42px;
    color: #B91D51;
    margin-bottom: 16px;
    font-weight: bold;
}

.box-content {
    font-size: 26px;
    line-height: 1.618;
}

.feature-panel {
    display: table;
    width: 100%;
    background-color: #2BC0DE;
    color: #ffffff;
    padding: 42px;
    margin-bottom: 26px;
    table-layout: fixed;
}

.panel-title {
    font-size: 42px;
    margin-bottom: 16px;
}

.panel-description {
    font-size: 26px;
    line-height: 1.618;
}

.detail-section {
    display: table;
    width: 100%;
    background-color: #f0f0f0;
    padding: 68px 0;
    table-layout: fixed;
}

.full-width-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
}

.image-section {
    display: table;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    table-layout: fixed;
}

.image-overlay {
    display: table;
    width: 100%;
    height: 100%;
    background-color: rgba(43, 192, 222, 0.7);
    table-layout: fixed;
}

.overlay-content {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    color: #ffffff;
    padding: 42px;
}

.overlay-title {
    font-size: 110px;
    margin-bottom: 26px;
    font-weight: bold;
}

.overlay-text {
    font-size: 42px;
    line-height: 1.618;
}

.contact-form-wrapper {
    display: table;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 42px;
    background-color: #f0f0f0;
    table-layout: fixed;
}

.form-row {
    display: table;
    width: 100%;
    margin-bottom: 26px;
    table-layout: fixed;
}

.form-label {
    display: block;
    font-size: 26px;
    margin-bottom: 10px;
    color: #333333;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 16px;
    font-size: 26px;
    border: 2px solid #2BC0DE;
    background-color: #ffffff;
    font-family: Georgia, 'Times New Roman', serif;
}

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

.submit-form {
    display: inline-block;
    background-color: #2BC0DE;
    color: #ffffff;
    padding: 16px 42px;
    font-size: 26px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-form:hover {
    background-color: #1f9bb8;
}

.testimonial-slider {
    display: table;
    width: 100%;
    padding: 68px 0;
    table-layout: fixed;
}

.testimonial-item {
    display: table;
    width: 100%;
    padding: 42px;
    background-color: #ffffff;
    border-left: 4px solid #B91D51;
    margin-bottom: 26px;
    table-layout: fixed;
}

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

.testimonial-author {
    font-size: 26px;
    color: #B91D51;
    font-weight: bold;
}

.faq-wrapper {
    display: table;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 42px 0;
    table-layout: fixed;
}

.faq-item {
    display: table;
    width: 100%;
    margin-bottom: 26px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 26px;
    table-layout: fixed;
}

.faq-question {
    font-size: 26px;
    color: #2BC0DE;
    font-weight: bold;
    margin-bottom: 16px;
    cursor: pointer;
}

.faq-answer {
    font-size: 26px;
    line-height: 1.618;
    color: #333333;
}

.footer {
    display: table;
    width: 100%;
    background-color: #333333;
    color: #ffffff;
    padding: 68px 0 26px 0;
    table-layout: fixed;
}

.footer-container {
    display: table;
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    table-layout: fixed;
}

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

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

.footer-title {
    font-size: 26px;
    margin-bottom: 16px;
    color: #F1C265;
}

.footer-text {
    font-size: 16px;
    line-height: 1.618;
    margin-bottom: 10px;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #F1C265;
}

.footer-bottom {
    display: table;
    width: 100%;
    text-align: center;
    padding-top: 42px;
    margin-top: 42px;
    border-top: 1px solid #555555;
    table-layout: fixed;
}

.footer-copyright {
    font-size: 16px;
    color: #999999;
}

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

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

.text-right {
    text-align: right;
}

.bg-primary {
    background-color: #2BC0DE;
}

.bg-secondary {
    background-color: #B91D51;
}

.bg-accent {
    background-color: #F1C265;
}

.bg-light {
    background-color: #f0f0f0;
}

.text-primary {
    color: #2BC0DE;
}

.text-secondary {
    color: #B91D51;
}

.text-accent {
    color: #F1C265;
}

.spacing-xs {
    padding: 10px;
}

.spacing-sm {
    padding: 16px;
}

.spacing-md {
    padding: 26px;
}

.spacing-lg {
    padding: 42px;
}

.spacing-xl {
    padding: 68px;
}

.spacing-xxl {
    padding: 110px;
}

.margin-bottom-xs {
    margin-bottom: 10px;
}

.margin-bottom-sm {
    margin-bottom: 16px;
}

.margin-bottom-md {
    margin-bottom: 26px;
}

.margin-bottom-lg {
    margin-bottom: 42px;
}

.margin-bottom-xl {
    margin-bottom: 68px;
}

.magazine-layout {
    display: table;
    width: 100%;
    column-count: 3;
    column-gap: 26px;
    table-layout: fixed;
}

.magazine-item {
    break-inside: avoid;
    margin-bottom: 26px;
}

@media screen and (max-width: 1300px) {
    .masthead-title {
        font-size: 68px;
    }

    .overlay-title {
        font-size: 68px;
    }
}

@media screen and (max-width: 1050px) {
    body {
        font-size: 26px;
    }

    .masthead-title {
        font-size: 68px;
    }

    .section-title {
        font-size: 42px;
    }

    .table-cell,
    .footer-cell {
        display: block;
        width: 100%;
        padding: 26px 0;
    }

    .table-cell-third {
        display: block;
        width: 100%;
        padding: 26px 0;
    }

    .magazine-layout {
        column-count: 2;
    }
}

@media screen and (max-width: 850px) {
    .mobile-menu-toggle {
        display: block;
    }

    .logo-cell {
        width: 100%;
        display: block;
    }

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

    .main-nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #2BC0DE;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
    }

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

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

    .nav-item {
        display: block;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 0;
    }

    .nav-link {
        display: block;
        padding: 16px 26px;
        font-size: 26px;
    }

    .masthead-title {
        font-size: 42px;
    }

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

    .section-title {
        font-size: 42px;
    }

    .overlay-title {
        font-size: 42px;
    }

    .magazine-layout {
        column-count: 1;
    }
}

@media screen and (max-width: 575px) {
    body {
        font-size: 16px;
    }

    .logo {
        font-size: 26px;
    }

    .masthead {
        padding: 42px 0;
    }

    .masthead-cell {
        padding: 26px;
    }

    .masthead-title {
        font-size: 42px;
    }

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

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

    .action-link {
        font-size: 16px;
        padding: 16px 26px;
    }

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

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .content-card,
    .information-box,
    .feature-panel {
        padding: 26px;
    }

    .card-title,
    .box-header,
    .panel-title {
        font-size: 26px;
    }

    .card-text,
    .box-content,
    .panel-description {
        font-size: 16px;
    }

    .form-label,
    .form-input,
    .form-textarea,
    .form-select,
    .submit-form {
        font-size: 16px;
    }

    .testimonial-text,
    .testimonial-author,
    .faq-question,
    .faq-answer {
        font-size: 16px;
    }

    .footer-title {
        font-size: 16px;
    }

    .nav-link {
        font-size: 16px;
    }

    .overlay-title {
        font-size: 26px;
    }

    .overlay-text {
        font-size: 16px;
    }
}

@media print {
    .navbar,
    .mobile-menu-toggle,
    .action-link,
    .submit-form,
    .footer {
        display: none;
    }

    body {
        font-size: 12pt;
        color: #000000;
        background-color: #ffffff;
    }

    .masthead {
        background: none;
        color: #000000;
    }

    a {
        text-decoration: underline;
        color: #000000;
    }
}
