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

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.navbar {
    background: #94E228;
    padding: 16px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
    display: table-cell;
    vertical-align: middle;
    width: 40%;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 0;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 48px;
    color: #ffffff;
    cursor: pointer;
    position: absolute;
    right: 26px;
    top: 26px;
    z-index: 1100;
}

.main-nav {
    display: table-cell;
    vertical-align: middle;
    width: 60%;
    text-align: right;
    opacity: 1;
    visibility: visible;
}

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

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

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

.nav-link:hover {
    background: #2386CD;
    color: #ffffff;
}

.masthead {
    display: table;
    width: 100%;
    table-layout: fixed;
    padding: 68px 0;
    background: linear-gradient(135deg, #94E228 0%, #2386CD 100%);
    color: #ffffff;
    min-height: 500px;
}

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

.masthead-text {
    display: table-cell;
    vertical-align: middle;
    width: 70%;
    padding: 26px;
}

.masthead-image {
    display: table-cell;
    vertical-align: middle;
    width: 30%;
    padding: 26px;
}

.masthead h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 26px;
    line-height: 1.2;
}

.masthead p {
    font-size: 24px;
    margin-bottom: 42px;
    line-height: 1.5;
}

.submit-form {
    display: inline-block;
    padding: 16px 42px;
    background: #E359AA;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.submit-form:hover {
    background: #2386CD;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

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

.article-section:nth-child(even) {
    background: #f0f0f0;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #94E228;
    margin-bottom: 42px;
    text-align: center;
}

.section-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #2386CD;
    margin-bottom: 26px;
}

.section-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 26px;
    color: #333333;
}

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

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

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

.content-cell-50 {
    width: 50%;
}

.content-cell-33 {
    width: 33.333%;
}

.content-cell-66 {
    width: 66.666%;
}

.content-card {
    background: #ffffff;
    padding: 42px;
    margin-bottom: 26px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.content-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transform: translateY(-4px);
}

.card-title {
    font-size: 24px;
    font-weight: 600;
    color: #94E228;
    margin-bottom: 16px;
}

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

.information-box {
    background: #f0f0f0;
    padding: 26px;
    margin: 26px 0;
    border-left: 4px solid #94E228;
}

.feature-panel {
    display: table;
    width: 100%;
    table-layout: fixed;
    background: #ffffff;
    padding: 42px;
    margin: 26px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.feature-icon {
    display: table-cell;
    vertical-align: middle;
    width: 20%;
    text-align: center;
    font-size: 24px;
    color: #2386CD;
}

.feature-content {
    display: table-cell;
    vertical-align: middle;
    width: 80%;
    padding-left: 26px;
}

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

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

.layout-cell {
    display: table-cell;
    vertical-align: top;
}

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

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

.detail-card {
    background: #ffffff;
    padding: 26px;
    margin-bottom: 16px;
    border: 1px solid #e0e0e0;
}

.statistics-section {
    display: table;
    width: 100%;
    table-layout: fixed;
    padding: 68px 0;
    background: #2386CD;
    color: #ffffff;
}

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

.stat-item {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding: 26px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #94E228;
    display: block;
    margin-bottom: 16px;
}

.stat-label {
    font-size: 16px;
    color: #ffffff;
}

.contact-section {
    padding: 68px 0;
    background: #f0f0f0;
}

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

.form-group {
    margin-bottom: 26px;
}

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

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    background: #ffffff;
    transition: all 0.3s;
}

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

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

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

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

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

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

.gallery-item {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s;
}

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

.testimonial-wrapper {
    background: #ffffff;
    padding: 42px;
    margin: 26px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 4px solid #E359AA;
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 26px;
    color: #333333;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: #2386CD;
}

.footer {
    background: #333333;
    color: #ffffff;
    padding: 68px 0 26px 0;
}

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

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

.footer-title {
    font-size: 24px;
    font-weight: 600;
    color: #94E228;
    margin-bottom: 26px;
}

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

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

.footer-link:hover {
    color: #94E228;
    padding-left: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 42px;
    margin-top: 42px;
    border-top: 1px solid #555555;
    font-size: 16px;
}

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

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

.blog-cell {
    display: table-cell;
    vertical-align: top;
}

.blog-cell-large {
    width: 50%;
}

.blog-cell-small {
    width: 25%;
}

.blog-card {
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.blog-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.blog-image {
    width: 100%;
    height: auto;
    display: block;
}

.blog-content {
    padding: 26px;
}

.blog-title {
    font-size: 24px;
    font-weight: 600;
    color: #2386CD;
    margin-bottom: 16px;
}

.blog-excerpt {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 16px;
}

.blog-meta {
    font-size: 16px;
    color: #777777;
}

.pricing-table {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-spacing: 26px;
    margin: 42px 0;
}

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

.pricing-cell {
    display: table-cell;
    vertical-align: top;
    width: 33.333%;
}

.pricing-card {
    background: #ffffff;
    padding: 42px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.pricing-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transform: translateY(-8px);
}

.pricing-card.featured {
    background: #94E228;
    color: #ffffff;
}

.pricing-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2386CD;
}

.pricing-card.featured .pricing-title {
    color: #ffffff;
}

.pricing-price {
    font-size: 48px;
    font-weight: 700;
    color: #94E228;
    margin-bottom: 26px;
}

.pricing-card.featured .pricing-price {
    color: #ffffff;
}

.pricing-features {
    list-style: none;
    margin-bottom: 42px;
}

.pricing-feature {
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    padding: 26px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.faq-question {
    font-size: 24px;
    font-weight: 600;
    color: #2386CD;
    margin-bottom: 16px;
}

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

.breadcrumb {
    padding: 16px 0;
    font-size: 16px;
}

.breadcrumb-link {
    color: #2386CD;
    text-decoration: none;
}

.breadcrumb-link:hover {
    text-decoration: underline;
}

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

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

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

.mt-10 { margin-top: 10px; }
.mt-16 { margin-top: 16px; }
.mt-26 { margin-top: 26px; }
.mt-42 { margin-top: 42px; }
.mt-68 { margin-top: 68px; }

.mb-10 { margin-bottom: 10px; }
.mb-16 { margin-bottom: 16px; }
.mb-26 { margin-bottom: 26px; }
.mb-42 { margin-bottom: 42px; }
.mb-68 { margin-bottom: 68px; }

.pt-10 { padding-top: 10px; }
.pt-16 { padding-top: 16px; }
.pt-26 { padding-top: 26px; }
.pt-42 { padding-top: 42px; }
.pt-68 { padding-top: 68px; }

.pb-10 { padding-bottom: 10px; }
.pb-16 { padding-bottom: 16px; }
.pb-26 { padding-bottom: 26px; }
.pb-42 { padding-bottom: 42px; }
.pb-68 { padding-bottom: 68px; }

.bg-primary { background: #94E228; }
.bg-secondary { background: #2386CD; }
.bg-accent { background: #E359AA; }
.bg-light { background: #f0f0f0; }
.bg-white { background: #ffffff; }

.color-primary { color: #94E228; }
.color-secondary { color: #2386CD; }
.color-accent { color: #E359AA; }
.color-white { color: #ffffff; }
.color-dark { color: #333333; }

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

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

    .masthead-text {
        width: 65%;
    }

    .masthead-image {
        width: 35%;
    }

    .content-table {
        border-spacing: 16px;
    }

    .pricing-table {
        border-spacing: 16px;
    }
}

@media screen and (max-width: 850px) {
    html {
        font-size: 12px;
    }

    .nav-container {
        display: block;
        position: relative;
    }

    .logo {
        display: block;
        width: 100%;
        text-align: center;
        padding: 16px 0;
    }

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

    .main-nav {
        display: block;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #94E228;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
        z-index: 1000;
    }

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

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

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

    .nav-link {
        display: block;
        width: 100%;
        padding: 16px;
    }

    .masthead-content {
        display: block;
    }

    .masthead-text,
    .masthead-image {
        display: block;
        width: 100%;
    }

    .content-table {
        display: block;
    }

    .content-row {
        display: block;
    }

    .content-cell {
        display: block;
        width: 100%;
        padding: 16px 0;
    }

    .layout-wrapper {
        display: block;
    }

    .layout-row {
        display: block;
    }

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

    .footer-content {
        display: block;
    }

    .footer-column {
        display: block;
        width: 100%;
    }

    .gallery-grid {
        display: block;
    }

    .gallery-row {
        display: block;
    }

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

    .blog-grid {
        display: block;
    }

    .blog-row {
        display: block;
    }

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

    .pricing-table {
        display: block;
    }

    .pricing-row {
        display: block;
    }

    .pricing-cell {
        display: block;
        width: 100%;
        margin-bottom: 26px;
    }

    .stat-wrapper {
        display: block;
    }

    .stat-item {
        display: block;
        width: 100%;
        margin-bottom: 42px;
    }

    .feature-panel {
        display: block;
    }

    .feature-icon {
        display: block;
        width: 100%;
        margin-bottom: 16px;
    }

    .feature-content {
        display: block;
        width: 100%;
        padding-left: 0;
    }
}

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

    .container {
        width: 95%;
        padding: 0 10px;
    }

    .masthead {
        padding: 42px 0;
    }

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

    .content-card {
        padding: 26px;
    }

    .feature-panel {
        padding: 26px;
    }

    .footer {
        padding: 42px 0 16px 0;
    }
}
