.global-body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #333333;
    background-color: #FAFAFA;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.global-header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #EAEAEA;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.global-nav {
    display: flex;
    align-items: center;
}

.global-ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.global-li {
    margin: 0;
    padding: 0;
}

.global-a {
    text-decoration: none;
    color: #333333;
    transition: color 0.3s ease;
}

.global-a:hover {
    color: #D4AF37;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #111111;
}

.disclosure-bar {
    background-color: #F8F8F8;
    color: #666666;
    font-size: 12px;
    text-align: center;
    padding: 8px 15px;
    border-bottom: 1px solid #EAEAEA;
}

.global-main {
    display: block;
    min-height: calc(100vh - 200px);
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5%;
    background-color: #FFFFFF;
    gap: 50px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.global-img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.global-h1 {
    font-size: 48px;
    font-weight: 800;
    color: #111111;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.2;
}

.global-h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111111;
    margin-top: 40px;
    margin-bottom: 20px;
}

.global-h3 {
    font-size: 24px;
    font-weight: 600;
    color: #111111;
    margin-top: 30px;
    margin-bottom: 15px;
}

.global-p {
    font-size: 18px;
    color: #555555;
    margin-top: 0;
    margin-bottom: 24px;
}

.global-btn {
    display: inline-block;
    background-color: #D4AF37;
    color: #FFFFFF;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
}

.global-btn:hover {
    background-color: #B5952F;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.features-section {
    padding: 80px 5%;
    background-color: #FAFAFA;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature-card {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    text-align: center;
}

.feature-icon {
    font-size: 36px;
    color: #D4AF37;
    margin-bottom: 20px;
}

.content-section {
    padding: 80px 5%;
    max-width: 900px;
    margin: 0 auto;
    background-color: #FFFFFF;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
}

.table-th, .table-td {
    border: 1px solid #EAEAEA;
    padding: 15px;
    text-align: left;
}

.table-th {
    background-color: #F8F8F8;
    font-weight: 600;
    color: #111111;
}

.global-footer {
    background-color: #111111;
    color: #999999;
    padding: 60px 5% 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column-title {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

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

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 5%;
    }
    .global-h1 {
        font-size: 36px;
    }
    .global-ul {
        display: none; /* simple mobile nav approach for now */
    }
}
