.content-wrapper {
    padding: 20px;
}

.promo-banner {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 50%, #1d4ed8 100%);
    color: white;
    padding: 45px 20px;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 0;
    border-top: 5px solid #dc2626;
    border-bottom: 5px solid #dc2626;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: sweep 3s infinite;
}

@keyframes sweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

.promo-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.promo-banner .main-text {
    font-size: 42px;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 8px;
}

.promo-banner .sub-text {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fbbf24;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.promo-banner .disclaimer {
    margin: 20px 0 0 0;
    font-size: 14px;
    color: #e2e8f0;
    font-weight: 500;
    font-style: italic;
}

.promo-highlight {
    display: inline-block;
    background: rgba(220, 38, 38, 0.9);
    padding: 8px 16px;
    margin: 0 8px;
    border-radius: 6px;
    font-weight: 900;
    color: white;
    text-shadow: none;
    box-shadow: 0 3px 10px rgba(220, 38, 38, 0.4);
}


.service-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-header {
    background: #1e3a8a;
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

.service-content {
    padding: 20px;
    flex: 1;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.pricing-table th {
    background: #374151;
    color: white;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}

.pricing-table td {
    padding: 8px 12px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
}

.pricing-table tr:nth-child(even) {
    background: #f9fafb;
}

.price {
    font-weight: bold;
    color: #1e3a8a;
}

.sale-badge {
    background: #ef4444;
    color: white;
    padding: 2px 6px;
    border-radius: 0;
    font-size: 11px;
    font-weight: bold;
}

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

.air-price {
    font-size: 28px;
    font-weight: bold;
    color: #1e3a8a;
    margin: 15px 0;
}

.schedule-info {
    background: #eff6ff;
    padding: 12px;
    border-radius: 0;
    margin-top: 15px;
    border-left: 4px solid #1e3a8a;
}

.schedule-info strong {
    color: #1e3a8a;
    font-size: 12px;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.features-list li:before {
    content: "•";
    color: #1e3a8a;
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (max-width: 768px) {            
    .content-wrapper {
        padding: 20px;
    }
    
    .promo-banner {
        padding: 35px 15px;
    }
    
    .promo-banner .main-text {
        font-size: 32px;
        letter-spacing: 2px;
    }
    
    .promo-banner .sub-text {
        font-size: 20px;
        letter-spacing: 2px;
    }
    
    .promo-banner .disclaimer {
        font-size: 13px;
    }
    
    .promo-highlight {
        margin: 4px;
        padding: 6px 12px;
    }
}

@media (max-width: 576px) {
    .pricing-table {
        font-size: 12px;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 6px 4px;
    }
}

/* Suriname Section */
.suriname-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    overflow: hidden;
    height: 100%;
}

.suriname-header {
    background: #059669;
    color: white;
    padding: 30px 20px;
    text-align: center;
    position: relative;
}

.suriname-flag {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 40px;
    border: 2px solid white;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.flag-green {
    background: #059669;
    flex: 1;
}

.flag-white {
    background: white;
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flag-red {
    background: #dc2626;
    flex: 1;
}

.flag-star {
    color: #fbbf24;
    font-size: 12px;
}

.suriname-header h2 {
    font-size: 26px;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.suriname-content {
    padding: 30px;
}

.shipping-info {
    text-align: center;
    margin-bottom: 30px;
}

.country-flags {
    font-size: 40px;
    margin-bottom: 20px;
}

.arrow {
    margin: 0 20px;
    color: #1e3a8a;
    font-weight: bold;
}

.shipping-text {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
}

.service-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-badge {
    background: #1e3a8a;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    min-width: 150px;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

/* How It Works Section */
.how-it-works-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    overflow: hidden;
    height: 100%;
}

.how-header {
    background: #374151;
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.how-header h2 {
    font-size: 26px;
    font-weight: bold;
    text-transform: uppercase;
}

.shipping-icons {
    font-size: 30px;
}

.shipping-icons i {
    margin: 0 15px;
    color: #60a5fa;
}

.steps-content {
    padding: 30px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.step-number {
    background: #1e3a8a;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.step-text strong {
    display: block;
    color: #1e3a8a;
    font-size: 15px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-text p {
    margin: 5px 0;
    font-size: 14px;
    color: #666;
}

.phone-numbers {
    font-weight: bold;
    color: #1e3a8a !important;
    font-size: 15px !important;
}

.step-divider {
    width: 3px;
    height: 30px;
    background: #1e3a8a;
    margin: 0 auto 25px auto;
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .suriname-flag {
        position: static;
        transform: none;
        margin: 0 auto 15px auto;
    }
    
    .suriname-header h2 {
        font-size: 22px;
    }
    
    .how-header h2 {
        font-size: 22px;
    }
    
    .service-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .service-badge {
        min-width: 250px;
    }
    
    .country-flags {
        font-size: 32px;
    }
}

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

.service-item {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
}

.service-icon {
    font-size: 60px;
    color: #1e3a8a;
    margin-bottom: 20px;
    display: block;
}

.service-title {
    font-size: 12px;
    font-weight: bold;
    color: #333;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .service-item {
        padding: 30px 20px;
    }
    
    .service-icon {
        font-size: 50px;
    }
}

image-gallery {
    background: white;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.image-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.image-item {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.image-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-item img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .image-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .image-item {
        min-width: 250px;
    }
}