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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 26px;
    line-height: 1.618;
    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;
}

.container-wide {
    width: 95%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.navbar {
    background-color: #9826C5;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

.logo a {
    color: #ffffff;
    text-decoration: none;
    font-size: 42px;
    font-weight: bold;
    letter-spacing: -1px;
}

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

.main-nav {
    display: table;
    width: auto;
    margin-left: auto;
    table-layout: auto;
    transition: max-height 0.3s ease;
}

.nav-item {
    display: table-cell;
    vertical-align: middle;
    padding-left: 26px;
    padding-right: 26px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 26px;
    display: block;
    padding: 10px 0;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #4EE970;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 42px;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 26px;
    top: 16px;
}

.header-main {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #333333;
}

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

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(152,38,197,0.85) 0%, rgba(127,154,29,0.75) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: table;
    width: 100%;
    height: 100%;
    table-layout: fixed;
}

.hero-text-wrapper {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding: 42px;
}

.hero-title {
    font-size: 110px;
    color: #ffffff;
    margin-bottom: 26px;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 42px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.hero-cta {
    display: inline-block;
    padding: 16px 42px;
    background-color: #4EE970;
    color: #333333;
    text-decoration: none;
    font-size: 26px;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.hero-cta:hover {
    background-color: #7F9A1D;
    color: #ffffff;
}

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

.content-section.alt-bg {
    background-color: #f0f0f0;
}

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

.section-title {
    font-size: 68px;
    color: #9826C5;
    margin-bottom: 16px;
    font-weight: bold;
}

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

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

.content-cell-60 {
    display: table-cell;
    width: 60%;
    vertical-align: middle;
    padding-right: 42px;
}

.content-cell-40 {
    display: table-cell;
    width: 40%;
    vertical-align: middle;
}

.content-cell-40.image-cell img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

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

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

.grid-cell-33 {
    display: table-cell;
    width: 33.333%;
    vertical-align: top;
    padding: 16px;
}

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

.grid-cell-25 {
    display: table-cell;
    width: 25%;
    vertical-align: top;
    padding: 16px;
}

.info-card {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 26px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(152,38,197,0.15);
}

.card-icon {
    font-size: 68px;
    color: #9826C5;
    margin-bottom: 16px;
    text-align: center;
}

.card-title {
    font-size: 42px;
    color: #333333;
    margin-bottom: 16px;
    font-weight: bold;
    text-align: center;
}

.card-description {
    font-size: 26px;
    color: #666666;
    line-height: 1.618;
    text-align: center;
}

.action-button {
    display: inline-block;
    padding: 16px 42px;
    background-color: #9826C5;
    color: #ffffff;
    text-decoration: none;
    font-size: 26px;
    font-weight: bold;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.action-button:hover {
    background-color: #7F9A1D;
}

.primary-cta {
    background-color: #4EE970;
    color: #333333;
}

.primary-cta:hover {
    background-color: #7F9A1D;
    color: #ffffff;
}

.form-container {
    display: table;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 42px;
    background-color: #f0f0f0;
    border-radius: 8px;
}

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

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

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px;
    font-size: 26px;
    border: 2px solid #cccccc;
    border-radius: 4px;
    background-color: #ffffff;
    transition: border-color 0.2s ease;
}

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

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

.form-submit {
    width: 100%;
    padding: 16px 42px;
    font-size: 26px;
}

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

.testimonial-card {
    background-color: #ffffff;
    padding: 42px;
    border-left: 4px solid #9826C5;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-radius: 4px;
}

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

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

.testimonial-position {
    font-size: 16px;
    color: #666666;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

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

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

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background-color: #000000;
    border-radius: 8px;
    margin-bottom: 42px;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.faq-container {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    margin-bottom: 16px;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 26px;
    font-size: 26px;
    font-weight: bold;
    color: #333333;
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #9826C5;
}

.faq-answer {
    padding: 0 26px 26px 26px;
    font-size: 26px;
    color: #666666;
    line-height: 1.618;
    display: none;
}

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

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

.footer-content {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-spacing: 42px;
}

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

.footer-title {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 26px;
    font-weight: bold;
}

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

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

.footer-link:hover {
    color: #4EE970;
}

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

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

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

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

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

.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-sm {
    margin-bottom: 16px;
}

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

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

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

.color-primary {
    color: #9826C5;
}

.color-secondary {
    color: #7F9A1D;
}

.color-accent {
    color: #4EE970;
}

.bg-primary {
    background-color: #9826C5;
}

.bg-secondary {
    background-color: #7F9A1D;
}

.bg-accent {
    background-color: #4EE970;
}

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

.bg-white {
    background-color: #ffffff;
}

.text-bold {
    font-weight: bold;
}

.text-xs {
    font-size: 10px;
}

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

.text-base {
    font-size: 26px;
}

.text-lg {
    font-size: 42px;
}

.text-xl {
    font-size: 68px;
}

.text-xxl {
    font-size: 110px;
}

.width-full {
    width: 100%;
}

.width-auto {
    width: auto;
}

.display-table {
    display: table;
}

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

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

.vertical-align-top {
    vertical-align: top;
}

.vertical-align-middle {
    vertical-align: middle;
}

.vertical-align-bottom {
    vertical-align: bottom;
}

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

    .container {
        width: 95%;
    }

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

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

    .logo {
        display: block;
        width: 100%;
        padding-left: 16px;
        padding-bottom: 16px;
    }

    .logo a {
        font-size: 26px;
    }

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

    .main-nav {
        display: none;
        width: 100%;
        margin-left: 0;
        background-color: #7F9A1D;
        max-height: 0;
        overflow: hidden;
    }

    .main-nav.active {
        display: block;
        max-height: 500px;
    }

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

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

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

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

    .hero-cta {
        font-size: 16px;
        padding: 10px 26px;
    }

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

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

    .content-row {
        display: block;
    }

    .content-cell-60,
    .content-cell-40 {
        display: block;
        width: 100%;
        padding-right: 0;
        margin-bottom: 26px;
    }

    .content-grid {
        display: block;
        border-spacing: 0;
    }

    .grid-row {
        display: block;
    }

    .grid-cell-33,
    .grid-cell-50,
    .grid-cell-25 {
        display: block;
        width: 100%;
        margin-bottom: 26px;
    }

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

    .card-description {
        font-size: 16px;
    }

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

    .form-container {
        padding: 26px;
    }

    .form-label {
        font-size: 16px;
    }

    .form-input,
    .form-textarea {
        font-size: 16px;
        padding: 10px;
    }

    .form-submit {
        font-size: 16px;
    }

    .testimonial-card {
        padding: 26px;
    }

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

    .testimonial-author {
        font-size: 16px;
    }

    .footer-content {
        display: block;
        border-spacing: 0;
    }

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

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

@media screen and (max-width: 500px) {
    .hero-title {
        font-size: 26px;
    }

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

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

    .header-main {
        height: 400px;
    }

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

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