/* Pink Salt Presell - Optimized CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* Typography */
h1 {
    font-size: 2.5rem;
    color: #d32f2f;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

h2 {
    font-size: 1.8rem;
    color: #1976d2;
    text-align: center;
    margin-bottom: 30px;
    font-weight: normal;
}

h3 {
    font-size: 1.4rem;
    color: #333;
    margin: 30px 0 15px 0;
    font-weight: bold;
}

p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: justify;
}

/* Images */
.hero-image, .section-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin: 20px 0;
    display: block;
}

.lazy-image {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy-image.loaded {
    opacity: 1;
}

/* Buttons */
.cta-button {
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 30px auto;
    padding: 20px 30px;
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-green {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
}

.btn-green:hover {
    background: linear-gradient(45deg, #218838, #1ba085);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-red {
    background: linear-gradient(45deg, #dc3545, #e74c3c);
    color: white;
    animation: pulse 2s infinite;
}

.btn-red:hover {
    background: linear-gradient(45deg, #c82333, #dc2626);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-blue {
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
}

.btn-blue:hover {
    background: linear-gradient(45deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

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

/* Special Sections */
.highlight-box {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border-left: 5px solid #ffc107;
    padding: 25px;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.warning-box {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    border-left: 5px solid #dc3545;
    padding: 25px;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.testimonial {
    background: #f8f9fa;
    padding: 25px;
    margin: 20px 0;
    border-radius: 10px;
    border-left: 5px solid #28a745;
    font-style: italic;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.author {
    text-align: center;
    font-style: italic;
    color: #666;
    margin: 20px 0;
    font-size: 1rem;
}

/* Lists */
.checkmark-list {
    list-style: none;
    padding-left: 0;
}

.checkmark-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.checkmark-list li:before {
    content: "✅";
    position: absolute;
    left: 0;
    top: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 15px;
        margin: 10px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .cta-button {
        font-size: 1.1rem;
        padding: 15px 25px;
    }
}

/* Performance Optimizations */
.container {
    will-change: transform;
}

.cta-button {
    will-change: transform;
}

/* Preload critical images */
.hero-image {
    loading: eager;
}

.section-image {
    loading: lazy;
}

