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

html {
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #f5f7fa;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    overflow-x: hidden;
}

/* Navigation */
.nav {
    background: #1B4540;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    height: 28px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s;
    padding: 8px 0;
    white-space: nowrap;
}

.nav-links a:hover:not(.nav-cta),
.nav-links a.active:not(.nav-cta) {
    color: #95D5B2;
}

.nav-cta {
    background: #E76F51;
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.2s;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.nav-cta:hover {
    background: #D35E40;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(231, 111, 81, 0.3);
    color: white !important;
}

.nav-cta.active {
    background: #C85A3E;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 60px;
}

.header h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.header .subtitle {
    font-size: 20px;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto 24px;
}

.header .highlight {
    display: inline-block;
    background: #FFF1EC;
    color: #E76F51;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 12px;
}

/* Section */
.section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 40px;
    margin-bottom: 30px;
    overflow-x: auto;
}

.section h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #E76F51;
}

.section h3 {
    font-size: 22px;
    color: #2c3e50;
    margin: 30px 0 16px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.stat-card {
    background: #FFF1EC;
    padding: 24px;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #E76F51;
}

.stat-card h3 {
    font-size: 32px;
    color: #E76F51;
    margin-bottom: 8px;
}

.stat-card p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 30px;
}

.comparison-card {
    padding: 24px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}

.comparison-card.vouchaah {
    background: #FFF1EC;
    border-color: #E76F51;
}

.comparison-card h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.comparison-card ul {
    list-style: none;
}

.comparison-card ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.comparison-card.vouchaah ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #E76F51;
    font-weight: 700;
}

.comparison-card.others ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #999;
}

/* Placement Items */
.placements-grid {
    display: grid;
    gap: 20px;
    margin-top: 24px;
}

.placement-item {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    display: flex;
    align-items: start;
    gap: 20px;
    border-left: 4px solid #E76F51;
    transition: all 0.3s;
}

.placement-item:hover {
    background: #FFF1EC;
    transform: translateX(5px);
}

.placement-icon {
    background: #E76F51;
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.placement-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.placement-price {
    font-weight: 700;
    color: #E76F51;
    font-size: 18px;
    margin: 8px 0;
}

.placement-content p,
.placement-content ul {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.placement-badge {
    display: inline-block;
    background: #E76F51;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 8px;
}

/* Package Cards */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.package-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
}

.package-card:hover {
    border-color: #E76F51;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(231, 111, 81, 0.2);
}

.package-card.featured {
    border-color: #E76F51;
    border-width: 3px;
}

.package-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #E76F51;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.package-card h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.package-price {
    font-size: 32px;
    color: #E76F51;
    font-weight: 700;
    margin-bottom: 8px;
}

.package-price span {
    font-size: 16px;
    color: #7f8c8d;
    font-weight: 400;
}

.package-features {
    list-style: none;
    margin: 24px 0;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 24px;
}

.package-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #E76F51;
    font-weight: 700;
}

.package-features li:last-child {
    border-bottom: none;
}

/* Targeting Grid */
.targeting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.targeting-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-top: 3px solid #E76F51;
}

.targeting-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.targeting-item ul {
    list-style: none;
}

.targeting-item ul li {
    padding: 6px 0;
    color: #666;
    font-size: 14px;
    padding-left: 20px;
    position: relative;
}

.targeting-item ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #E76F51;
    font-weight: 700;
}

/* Buttons */
.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #E76F51;
    color: white;
}

.btn-primary:hover {
    background: #C85A3E;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(231, 111, 81, 0.35);
}

.btn-secondary {
    background: white;
    color: #E76F51;
    border: 2px solid #E76F51;
}

.btn-secondary:hover {
    background: #FFF1EC;
}

.btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Form */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.25s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #E76F51;
    box-shadow: 0 0 0 3px rgba(231, 111, 81, 0.15);
}

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

/* Messages */
.message {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Info Box */
.info-box {
    background: #e3f2fd;
    border-left: 4px solid #2196F3;
    padding: 16px 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.info-box p {
    margin: 0;
    color: #1565c0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #E76F51 0%, #C85A3E 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    margin: 40px 0;
}

.cta-section h2 {
    color: white;
    border: none;
    margin-bottom: 16px;
    font-size: 32px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 60px;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
}

.footer p {
    color: #7f8c8d;
    margin-bottom: 12px;
}

.footer a {
    color: #E76F51;
    text-decoration: none;
    font-weight: 600;
}

.footer a:hover {
    text-decoration: underline;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

/* Exchange Rate Display */
.exchange-rate-badge {
    display: inline-block;
    background: #1B4540;
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 12px;
    vertical-align: middle;
}

/* Currency Switcher */
.currency-switcher {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: white;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px;
}

.currency-buttons {
    display: flex;
    gap: 4px;
}

.currency-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    color: #666;
}

.currency-btn.active {
    background: #1B4540;
    color: white;
}

.currency-btn:hover:not(.active) {
    background: #f0f0f0;
}

.exchange-rate-display {
    font-size: 11px;
    color: #666;
    font-weight: 600;
    white-space: nowrap;
}

/* Price Display */
.price-value {
    display: inline-block;
    transition: opacity 0.2s;
}

.price-value.switching {
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-links {
        gap: 16px;
    }
    
    .nav-links a {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 12px 20px;
    }

    .nav-logo img {
        height: 24px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1B4540;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        gap: 0;
    }
    
    .nav-links a {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-cta {
        margin-top: 8px;
        text-align: center;
        display: block;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .header h1 {
        font-size: 28px;
    }

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

    .section {
        padding: 20px;
        overflow-x: hidden;
    }

    .section h2 {
        font-size: 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .comparison-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .placement-item {
        flex-direction: column;
    }

    .cta-section {
        padding: 40px 20px;
    }

    .cta-section h2 {
        font-size: 22px;
    }

    .currency-switcher {
        bottom: 20px;
        right: 20px;
        padding: 10px;
    }
    
    .currency-btn {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .exchange-rate-display {
        font-size: 10px;
    }

    table {
        min-width: 100%;
        font-size: 14px;
    }
    
    table th,
    table td {
        padding: 8px !important;
    }
}
/* Prevent Horizontal Scroll */
body {
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}
/* Stats Cards Container - Fix Overflow */
.stats-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 30px;
    width: 100%;
}

.stats-cards-container > div {
    background: #FFF1EC;
    padding: 24px 16px;
    border-radius: 8px;
    border-left: 4px solid #E76F51;
    text-align: center;
    min-width: 0; /* Important for text truncation */
}

.stats-cards-container h3 {
    font-size: 28px;
    color: #E76F51;
    margin-bottom: 8px;
    word-wrap: break-word;
}

.stats-cards-container p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Comparison Cards - Prevent Overflow */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 30px;
    width: 100%;
}

.comparison-card {
    padding: 24px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    min-width: 0; /* Prevent flex overflow */
}

/* Section - Ensure proper overflow handling */
.section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 40px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 100%;
    overflow: hidden; /* Changed from auto to hidden */
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
    .section {
        padding: 16px;
        overflow: hidden;
    }

    .stats-cards-container {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stats-cards-container h3 {
        font-size: 24px;
    }

    .stats-cards-container p {
        font-size: 12px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .comparison-card {
        padding: 16px;
    }
}

@media (max-width: 1024px) {
    .stats-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .stats-cards-container {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 12px;
    }

    .comparison-card h4 {
        font-size: 16px;
    }

    .comparison-card ul li {
        font-size: 14px;
    }
}

/* Ensure container doesn't overflow */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    overflow-x: hidden;
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 20px 12px;
    }
}

/* Prevent all potential overflows */
* {
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

/* Stats Grid - Fixed Overflow */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 30px;
    width: 100%;
    overflow: hidden;
}

.stat-card {
    background: #FFF1EC;
    padding: 20px 16px;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #E76F51;
    min-width: 0;
    overflow: hidden;
}

.stat-card h3 {
    font-size: 28px;
    color: #E76F51;
    margin-bottom: 8px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.stat-card p {
    color: #666;
    font-size: 13px;
    margin: 0;
    word-wrap: break-word;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-card {
        padding: 16px 12px;
    }

    .stat-card h3 {
        font-size: 22px;
    }

    .stat-card p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
/* Navigation - Fixed Height */
.nav {
    background: #1B4540;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px; /* Reduced from 16px */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 28px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 28px; /* Increased gap */
    align-items: center;
    flex-wrap: nowrap;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s;
    padding: 6px 0; /* Reduced padding */
    white-space: nowrap;
}

/* Get Started Button - Fixed */
.nav-cta {
    background: #E76F51;
    color: white !important;
    padding: 10px 24px; /* Better padding */
    border-radius: 8px;
    transition: all 0.2s;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    min-width: 120px; /* Prevent squeezing */
    text-align: center;
}

.nav-cta:hover {
    background: #D35E40;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(231, 111, 81, 0.3);
    color: white !important;
}

.nav-cta.active {
    background: #C85A3E;
}

/* Mobile adjustments */
@media (max-width: 1024px) {
    .nav-links {
        gap: 20px; /* Reduced gap on smaller screens */
    }
    
    .nav-links a {
        font-size: 13px;
    }
    
    .nav-cta {
        padding: 8px 18px;
        font-size: 13px;
        min-width: 100px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 10px 20px; /* Even smaller on mobile */
    }

    .nav-logo img {
        height: 24px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1B4540;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        gap: 0;
    }
    
    .nav-links a {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-cta {
        margin-top: 8px;
        text-align: center;
        display: block;
        padding: 12px 24px;
        font-size: 14px;
        min-width: auto;
        width: 100%;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}