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

/* Mobile Touch Optimizations */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    touch-action: manipulation;
}

/* Smooth scrolling for all devices */
html {
    scroll-behavior: smooth;
}

/* Better touch targets for mobile */
button, .badge, .stat-item, .benefit-item {
    min-height: 44px;
    min-width: 44px;
}

/* Hero Stats Styling */
.hero-stats {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.stat-item {
    background: linear-gradient(135deg, #ffd700 0%, #ff6600 100%);
    border-radius: 15px;
    border: 3px solid #ffd700;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4), 0 0 20px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    min-width: 220px;
    position: relative;
    overflow: hidden;
    flex: 1;
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, #ffd700 0%, #ff6600 100%);
    border-color: #ffffff;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.5), 0 0 30px rgba(255, 0, 0, 0.4);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffd700 0%, #ff6600 100%);;
    transition: left 0.5s;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-icon {
    color: #ffffff;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff !important;
    display: block;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.8rem;
    color: #ffffff !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    opacity: 0.95;
    line-height: 1.1;
    text-align: center;
}

/* Prevent zoom on form inputs on iOS */
input, select, textarea {
    font-size: 16px;
}

/* Better tap highlights */
* {
    -webkit-tap-highlight-color: rgba(102, 126, 234, 0.2);
    -webkit-touch-callout: none;
}

/* Optimize animations for mobile */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HRD Corp Logo */
.hrd-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    margin-left: 10rem;
}

.left-logo {
    max-width: 90px;
    height: auto;
    border: none;
    background: transparent;
    object-fit: contain;
}

.hrd-logo {
    max-width: 90px;
    height: auto;
    border: none;
    background: transparent;
    object-fit: contain;
}

/* WhatsApp Contact Button */
.whatsapp-contact {
    margin-top: 50px;
    margin-bottom: 60px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.whatsapp-btn svg {
    flex-shrink: 0;
}

/* GIF Container within Hero */

.gif-container {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.full-width-gif {
    width: 100%;
    height: auto;
    max-height: 500px;
    display: block;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    background: #ffffff;
    min-height: calc(100vh + 10px);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #333333;
}

@keyframes whiteGradient {
    0% {
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 25%, #ffffff 50%, #f1f3f4 75%, #ffffff 100%);
    }
    100% {
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 25%, #f1f3f4 50%, #ffffff 75%, #f8f9fa 100%);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 0, 0, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255, 100, 0, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    animation: fireAccents 6s ease-in-out infinite alternate;
}

@keyframes fireAccents {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.6;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

/* Hero Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
    will-change: transform;
    transform: translateZ(0);
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Hero Layout */
.hero-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

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

.hero-icon {
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.hero-icon svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    animation: slideInLeft 1s ease-out;
}

.highlight {
    background: linear-gradient(45deg, #ffd700, #ffffff, #ff0000, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: highlightShine 2s ease-in-out infinite;
    text-shadow: 2px 2px 4px rgba(255, 0, 0, 0.3);
}

@keyframes highlightShine {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: #666666;
    line-height: 1.6;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.badge {
    background: #ffffff;
    color: #ff0000;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 0.95rem;
    border: 3px solid #ffd700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge:hover {
    transform: translateY(-3px) scale(1.05);
    background: #ffd700;
    color: #dc143c;
    border-color: #ff0000;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.badge.urgent {
    background: #ff0000;
    color: #ffffff;
    border: 3px solid #ffd700;
    animation: urgentPulse 1.5s infinite;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.7);
}

@keyframes urgentPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.7);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.9), 0 0 40px rgba(255, 0, 0, 0.5);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ffd700 0%, #ff6600 100%);
    padding: 15px 20px;
    border-radius: 15px;
    border: 3px solid #ffd700;
    transition: all 0.3s ease;
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    position: relative;
    overflow: hidden;
    flex: 0 0 200px;
}

.stat-icon {
    opacity: 0.8;
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out 0.8s both;
    will-change: transform;
}

/* Hero Image Frame */
.hero-image-frame {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 100%;
    height: 100%;
}

.image-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 30px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 255, 255, 0.1); }
    50% { box-shadow: 0 0 50px rgba(255, 255, 255, 0.2); }
}

.hero-image-container {
    position: relative;
    z-index: 3;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.6s ease;
    width: 100%;
    height: 100%;
}

.hero-image-container:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.hero-main-image {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 10px 20px rgba(102, 126, 234, 0.2);
    animation: fadeInScale 1.5s ease-out 1.2s both;
    transition: all 0.6s ease;
    object-fit: contain;
    background: white;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.hero-image-container:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    width: 100%;
}

.overlay-badge {
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.hero-image-container:hover .overlay-badge {
    transform: translateY(0);
}

/* Floating elements removed - replaced by hero image */

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Section Titles */
.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 20px;
    color: #333333;
}

.bigger-text {
    font-size: 1.1em;
    font-weight: 900;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

/* Importance Section */
.importance {
    padding: 80px 0;
    background: #f8f9fa;
}

.importance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.importance-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #3498db;
}

.importance-card.primary {
    border-left-color: #3498db;
}

.importance-card.alert {
    border-left-color: #e74c3c;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
}

.importance-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.reshaping-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.reshaping-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.grace-period {
    background: #e8f5e8;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border-left: 4px solid #27ae60;
}

.grace-period h4 {
    color: #27ae60;
    font-weight: 700;
    margin-bottom: 15px;
}

.grace-period ul {
    list-style: none;
    padding-left: 0;
}

.grace-period li {
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
}

.grace-period li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.update-alert {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #f39c12;
}

.update-alert h4 {
    color: #e67e22;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Course Section */
.course {
    padding: 80px 0;
    background: white;
}

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

.course-header-content {
    text-align: center;
}

.course-header .section-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.8rem;
}

.course-intro {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Course Main Layout */
.course-main-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.course-image-section {
    position: relative;
}

.image-frame {
    position: relative;
    display: inline-block;
    padding: 20px;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    opacity: 0.1;
    z-index: 1;
}

.course-image {
    position: relative;
    z-index: 2;
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(102, 126, 234, 0.1);
    transition: all 0.4s ease;
    object-fit: contain;
}

.course-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.2),
        0 15px 30px rgba(102, 126, 234, 0.15);
}

.image-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    pointer-events: none;
}

.decoration-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.element-1 {
    width: 60px;
    height: 60px;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
    animation: pulse 3s ease-in-out infinite;
}

.element-1::after {
    content: 'NEW';
}

.element-2 {
    width: 40px;
    height: 40px;
    bottom: -10px;
    left: -10px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    animation: bounce 2s ease-in-out infinite;
}

.course-overview {
    text-align: center;
    margin-bottom: 50px;
}

.course-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    display: inline-block;
    max-width: 600px;
}

.course-highlight h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.course-description {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    text-align: left;
}

.course-description h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.course-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.objectives-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #e1e8ed;
}

.objectives-section h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #3498db;
}

.objectives-section ul {
    list-style: none;
    padding-left: 0;
}

.objectives-section li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

.objectives-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.course-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.day-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-top: 4px solid #3498db;
}

.day-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.day-section ul {
    list-style: none;
    padding-left: 0;
}

.day-section li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.day-section li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #3498db;
}

.course-benefits {
    margin-top: 60px;
    padding: 60px 50px;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    border-radius: 25px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.course-benefits.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 0, 0, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255, 100, 0, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    animation: fireAccents 6s ease-in-out infinite alternate;
}

@keyframes fireAccents {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.6;
    }
}

.course-benefits h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 50px;
    font-size: 2.4rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.benefits-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Benefits content container - styles handled by grid layout */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
    backdrop-filter: blur(10px);
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: rgba(102, 126, 234, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.benefit-item h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.benefit-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

.benefits-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefits-image-wrapper {
    position: relative;
    transform: perspective(800px) rotateY(10deg) rotateX(-5deg);
    transition: transform 0.6s ease;
}

.benefits-image-wrapper:hover {
    transform: perspective(800px) rotateY(0deg) rotateX(0deg) scale(1.05);
}

.benefits-image-bg {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 25px;
    z-index: 1;
    animation: pulseGlow 4s ease-in-out infinite;
}

.benefits-image {
    position: relative;
    z-index: 2;
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(102, 126, 234, 0.1);
    transition: all 0.6s ease;
}

.benefits-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
}

.overlay-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-bubble {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 20px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 80px;
    animation: float 3s ease-in-out infinite;
}

.stat-bubble:nth-child(2) {
    animation-delay: 1.5s;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
    margin-top: 5px;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Benefits Image Center */
.benefits-image-center {
    text-align: center;
    margin-top: 40px;
}

.benefits-image-small {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefits-image-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* Duplicate styles removed - using integrated benefits styles above */

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
}

.cta .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-benefits {
    margin-top: 30px;
}

.benefit-point {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.check-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #27ae60;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Form Styles */
.signup-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.signup-form h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

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

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #3498db;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Large Desktop */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .main-graphic svg {
        width: 350px;
        height: 280px;
    }
}

/* Desktop */
@media (min-width: 1200px) and (max-width: 1399px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .main-graphic svg {
        width: 320px;
        height: 260px;
    }
}

/* Laptop */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-layout {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-item {
        padding: 12px 16px;
    }
    
    .main-graphic svg {
        width: 280px;
        height: 230px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        order: 2;
    }
    
    .hero-visual {
        order: 1;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .stat-item {
        min-width: 180px;
    }
    
    .importance-grid,
    .course-content,
    .cta .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 80px 0;
    }
    
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        order: 2;
    }
    
    .hero-visual {
        order: 1;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .badge {
        font-size: 0.85rem;
    }
    
    .hero-main-image {
        max-width: 280px;
    }
    
    .main-graphic svg {
        width: 250px;
        height: 200px;
    }
    
    .section-image {
        max-width: 100%;
        margin: 0 20px;
    }
    
    .objectives-image {
        max-width: 100%;
        margin: 0 20px;
    }
    
    .illustration-bg {
        width: 280px;
        height: 280px;
    }
    
    .floating-icon {
        padding: 8px;
    }
    
    .floating-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .importance-card,
    .reshaping-section,
    .course-description,
    .signup-form {
        padding: 30px 25px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-item {
        padding: 25px 20px;
    }
    
    /* New integrated layouts responsive */
    .course-main-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .course-image-section {
        order: -1;
    }
    
    .course-image {
        max-width: 100%;
        height: auto;
    }
    
    .image-frame {
        padding: 15px;
    }
    
    .course-header .section-title {
        font-size: 2rem;
    }
    
    .course-intro {
        font-size: 1.1rem;
    }
    
    .benefits-image-small {
        max-width: 300px;
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .benefits-image-center {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 30px auto;
        width: 100%;
        max-width: 400px;
    }
    
    .benefits-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefits-visual {
        order: -1;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .course-benefits {
        padding: 40px 25px;
    }
    
    .course-benefits h3 {
        font-size: 2rem;
    }
    
    .benefits-image-wrapper {
        transform: none;
    }
    
    .benefits-image-wrapper:hover {
        transform: scale(1.02);
    }
    
    .overlay-stats {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        top: 10px;
        right: 10px;
    }
    
    .stat-bubble {
        min-width: 60px;
        padding: 10px 15px;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .hero-image-frame {
        padding: 20px;
    }
    
    .hero-main-image {
        max-width: 300px;
    }
    
    .timeline-container::before {
        left: 20px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px;
        margin-right: 0;
        text-align: left;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .timeline-marker {
        left: 20px;
        transform: translateX(-50%);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Course columns layout - title above image on left, overview and objectives on right */
.course-columns-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.course-left-column,
.course-right-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.course-image-title-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.course-highlight {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(106, 17, 203, 0.2);
}

.objectives-image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

/* Benefits layout - 2x2 grid on left, image on right */
.benefits-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
    align-items: center;
}

.benefits-grid-container {
    width: 100%;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.benefits-image-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefits-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(102, 126, 234, 0.1);
    transition: all 0.4s ease;
    object-fit: contain;
}

/* Objectives layout - image beside learning objectives */
.objectives-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
    margin: 40px 0;
}

.objectives-section {
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.objectives-image-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Add specific styles for benefits image container */
.benefits-image-center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px auto;
    width: 100%;
    max-width: 400px;
}

/* Mobile Medium */
@media (max-width: 576px) {
    /* Course columns layout mobile adjustments */
    .course-columns-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .course-left-column {
        gap: 20px;
    }
    
    .course-image-title-container {
        gap: 15px;
    }
    
    .course-highlight {
        padding: 20px;
    }
    
    /* Benefits layout mobile adjustments */
    .benefits-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .benefits-image {
        max-width: 300px;
    }
    
    /* Objectives layout mobile adjustments */
    .objectives-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .objectives-section {
        order: 1;
        padding: 25px 20px;
    }
    
    .objectives-image-section {
        order: 0;
    }
    
    /* Benefits image mobile adjustments */
    .benefits-image-small {
        max-width: 250px;
    }
    
    .benefits-image-center {
        max-width: 280px;
    }
    
    .hero {
        padding: 70px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-stats {
        gap: 12px;
    }
    
    .stat-item {
        padding: 15px 20px;
        max-width: 100%;
    }
    
    .hero-main-image {
        max-width: 250px;
    }
    
    .main-graphic svg {
        width: 220px;
        height: 180px;
    }
    
    .section-image-container {
        margin-bottom: 40px;
    }
    
    .objectives-image-container {
        margin-top: 40px;
    }
    
    .illustration-bg {
        width: 250px;
        height: 250px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 35px;
    }
    
    .course-content {
        gap: 25px;
    }
    
    .day-section {
        padding: 25px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .signup-form {
        padding: 30px 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .benefit-point {
        font-size: 1rem;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .hero-layout {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .gif-banner {
        height: 50vh;
        min-height: 300px;
    }
    
    .gif-container {
        padding: 30px 15px;
    }
    
    .full-width-gif {
        max-width: 95%;
        max-height: 85%;
        object-fit: contain;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-main-image {
        max-height: 300px;
        object-fit: contain;
    }
    
    .course-image, .benefits-image {
        max-width: 85%;
        margin: 0 auto;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .gif-banner {
        height: 40vh;
        min-height: 250px;
    }
    
    .gif-container {
        padding: 20px 10px;
    }
    
    .full-width-gif {
        max-width: 98%;
        max-height: 90%;
        object-fit: contain;
    }
    
    .course-image, .benefits-image {
        max-width: 70%;
    }
    
    /* Course columns layout smaller screen adjustments */
    .course-columns-layout {
        gap: 25px;
        margin: 30px 0;
    }
    
    /* Benefits layout smaller screen adjustments */
    .benefits-layout {
        gap: 25px;
        margin: 30px 0;
    }
    
    .benefits-image {
        max-width: 250px;
    }
    
    /* Objectives layout smaller screen adjustments */
    .objectives-layout {
        gap: 25px;
        margin: 30px 0;
    }
    
    .objectives-section {
        padding: 20px 15px;
    }
    
    /* Benefits image smaller screen adjustments */
    .benefits-image-small {
        max-width: 220px;
    }
    
    .course-image {
        max-width: 100%;
        margin: 0 auto;
        display: block;
        border-radius: 24px;
        box-shadow: none;
    }
    
    .course-image-container {
        margin-top: 20px;
        padding: 0;
    }
    

    
    .benefits-image-center {
        max-width: 240px;
    }
    
    .benefits-image {
        max-width: 100%;
        margin: 0 auto;
        display: block;
        border-radius: 24px;
    }
    
    .benefits-image-section {
        margin-top: 30px;
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        gap: 10px;
    }
    
    .stat-item {
        padding: 12px 15px;
        gap: 8px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .badge {
        font-size: 0.8rem;
        padding: 8px 15px;
    }
    
    .hero-main-image {
        max-width: 220px;
    }
    
    .main-graphic svg {
        width: 200px;
        height: 160px;
    }
    
    .section-image-container {
        margin-bottom: 35px;
    }
    
    .objectives-image-container {
        margin-top: 35px;
    }
    
    .illustration-bg {
        width: 200px;
        height: 200px;
    }
    
    .section-title {
        font-size: 1.7rem;
        margin-bottom: 30px;
    }
    
    .hero-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .floating-icon {
        padding: 6px;
    }
    
    .floating-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .course-highlight,
    .course-description {
        padding: 25px 20px;
    }
    
    .objectives-section li {
        font-size: 0.9rem;
        padding-left: 20px;
    }
    
    .timeline-content {
        padding: 15px;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .benefit-point {
        font-size: 0.95rem;
    }
    
    .check-icon {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }
}

/* Mobile Extra Small */
@media (max-width: 360px) {
    /* Extra small mobile HRD logos */
    .left-logo,
    .hrd-logo {
        max-width: 50px;
    }
    
    .hrd-logo-container {
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .hero-img {
        max-width: 250px;
    }
    
    .gif-container {
        padding: 30px 10px;
    }
    
    .full-width-gif {
        max-height: 250px;
    }
    /* Benefits image tiny screen adjustments */
    .benefits-image-small {
        max-width: 180px;
    }
    
    .course-image {
        max-width: 240px;
    }
    
    .benefits-image-center {
        max-width: 200px;
        margin: 20px auto;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .hero {
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .hero-badges {
        gap: 8px;
        margin-bottom: 30px;
    }
    
    .badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .hero-stats {
        gap: 8px;
        margin-top: 25px;
    }
    
    .stat-item {
        padding: 12px 15px;
        gap: 8px;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .hero-main-image {
        max-width: 200px;
    }
    
    .main-graphic svg {
        width: 180px;
        height: 150px;
    }
    
    .section-image-container {
        margin-bottom: 30px;
    }
    
    .section-image {
        margin: 0 10px;
        border-radius: 15px;
    }
    
    .objectives-image-container {
        margin-top: 30px;
    }
    
    .objectives-image {
        margin: 0 10px;
        border-radius: 15px;
    }
    
    .illustration-bg {
        width: 180px;
        height: 180px;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .importance-card,
    .reshaping-section,
    .course-description,
    .signup-form,
    .day-section {
        padding: 20px 15px;
    }
    
    .benefit-item {
        padding: 20px 15px;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
    
    .form-group input {
        padding: 12px;
    }
    
    .submit-btn {
        padding: 15px;
        font-size: 1rem;
    }
    
    .importance-card,
    .reshaping-section,
    .signup-form {
        padding: 25px;
    }
}

/* Mobile Tablet */
@media (max-width: 768px) {
    /* HRD Logo Mobile Optimizations */
    .hrd-logo-container {
        margin-left: 0;
        margin-bottom: 20px;
        gap: 10px;
    }
    
    .left-logo,
    .hrd-logo {
        max-width: 60px;
    }
    
    /* Hero Layout Mobile */
    .hero-layout {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-img {
        margin-left: 0 !important;
        max-width: 280px;
        margin: 0 auto;
    }
    
    /* GIF Mobile Optimization */
    .gif-container {
        padding: 40px 15px;
        margin-top: 30px;
    }
    
    .full-width-gif {
        max-height: 300px;
    }
    
    /* WhatsApp Button Mobile in Hero */
    .hero .whatsapp-contact {
        margin-top: 30px;
        margin-bottom: 40px;
    }
    
    /* CTA Section Mobile */
    .cta .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Form Mobile */
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Rewards Section Mobile */
    .rewards-boxes {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reward-box {
        padding: 25px 20px;
    }
}

/* Rewards Section Styles */
.rewards {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.rewards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.3;
}

.rewards-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.rewards-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #2c3e50;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.rewards-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.rewards-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.reward-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.reward-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 18px;
}

.reward-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.25), 0 10px 25px rgba(118, 75, 162, 0.15);
    border-color: #667eea;
}

.reward-box:hover::before {
    opacity: 0.05;
}

.reward-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.reward-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reward-description {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.6;
    font-weight: 500;
}

.highlight-red {
    color: #dc3545;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(220, 53, 69, 0.2);
}

/* WhatsApp Contact Button */
.whatsapp-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    cursor: pointer;
    border: none;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.whatsapp-btn svg {
    flex-shrink: 0;
}
