/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    color: #E0E0E0;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #092240;
    padding: 15px 0;
    border-bottom: 1px solid #444444;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    text-align: right;
    font-size: 28px;
    font-weight: bold;
    color: #E0E0E0;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    text-align: center;
    background-color: #051426;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #E0E0E0;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #B0B0B0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Image Container */
.image-container {
    margin: 40px 0;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* CTA Section */
.cta-section {
    margin-top: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 18px 40px;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
}

.btn-icon {
    font-size: 1.3rem;
}

/* Steps Section */
.steps {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.steps h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #E0E0E0;
    text-align: center;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.step-number {
    background: #4CAF50;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.step-item p {
    font-size: 1.1rem;
    color: #E0E0E0;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: #092240;
}

.benefits h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #E0E0E0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.benefit-item {
    background-color: #051426;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #444444;
    text-align: center;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #E0E0E0;
}

.benefit-item p {
    color: #B0B0B0;
}

/* Footer */
.footer {
    background-color: #051426;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #444444;
}

.footer p {
    color: #B0B0B0;
}

/* Content Locker Styles */
.content-locker {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.locker-content {
    background-color: #092240;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid #444444;
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #E0E0E0;
}

.close-btn:hover {
    color: #4CAF50;
}

.locker-content h2 {
    color: #E0E0E0;
    margin-bottom: 15px;
}

.locker-content p {
    color: #B0B0B0;
    margin-bottom: 25px;
}

.locker-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.2rem;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.locker-button:hover {
    background: #45a049;
}

/* Loading Animation */
.loading {
    display: none;
    text-align: center;
    margin: 20px 0;
}

.loading-spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 4px solid #4CAF50;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}