@import url(https://fonts.googleapis.com/css?family=Montserrat:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic);
@import url(https://fonts.googleapis.com/css?family=Pacifico:regular);

:root {
    --headline: 'Montserrat';
    --body-copy: 'Open Sans';
    --signature-font: 'Pacifico';
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-copy);
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    font-size: 18px !important;
}

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

/* Typography styles */
h1, h2 {
    font-family: var(--headline);
    text-align: center;
}

h3, h4, h5 {
    text-align: left;
    font-family: var(--headline);
}

p {
    text-align: left;
}
.header {
    text-align: center;
    margin-bottom: 40px;
    /* border-bottom: 3px solid #ff6b35; */
    padding-bottom: 30px;
}

.main-headline {
    font-size: 42px;
    font-weight: bold;
    color: #ff0000;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.sub-headline {
    font-size: 24px;
    color: #333;
    font-weight: normal;
    line-height: 1.4;
    margin-bottom: 20px;
}

.highlight {
    background-color: #ffff00;
    padding: 2px 5px;
    font-weight: bold;
}

/* Story section */
.story-section {
    margin-bottom: 40px;
    text-align: left;
}

.personal-photo {
    float: left;
    margin: 0 20px 20px 0;
}

.photo {
    border-radius: 10px;
    border: 3px solid #ddd;
    max-width: 200px;
}

.dear-friend {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.story-section p {
    margin-bottom: 15px;
    font-size: 18px;
    text-align: justify;
}

.question-box {
    background-color: #fffacd;
    border: 2px solid #ff6b35;
    padding: 25px;
    margin: 30px 0;
    border-radius: 10px;
}

.question-box h3 {
    color: #ff0000;
    font-size: 22px;
    margin-bottom: 15px;
    text-align: center;
}

.question-box ul {
    list-style: none;
}

.question-box li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
}

.red-text {
    color: #ff0000;
    font-weight: bold;
    text-transform: uppercase;
}

/* Secret section */
.secret-section {
    margin-bottom: 40px;
    text-align: left;
}

.secret-box {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.secret-box h2 {
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
}

.secret-reveal {
    font-size: 48px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    margin: 15px 0;
    text-align: center;
}

.secret-subtitle {
    font-size: 18px;
    font-style: italic;
    text-align: center;
}

/* Social proof section */
.proof-section {
    margin-bottom: 40px;
    text-align: left;
}

.section-title {
    font-size: 28px;
    color: #ff6b35;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial {
    background-color: #f8f9fa;
    border-left: 5px solid #ff6b35;
    padding: 20px;
    border-radius: 5px;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial p {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.testimonial cite {
    font-weight: bold;
    color: #ff6b35;
    font-style: normal;
}

/* Offer section */
.offer-section {
    margin-bottom: 40px;
    text-align: left;
}

.offer-box {
    background-color: #f9f9f9;
    border: 2px solid #ff6b35;
    padding: 30px;
    border-radius: 10px;
    margin: 20px 0;
}

.offer-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.offer-item:last-child {
    border-bottom: none;
}

.offer-item h4 {
    color: #ff6b35;
    font-size: 20px;
    margin-bottom: 8px;
}

.offer-item p {
    font-size: 16px;
    color: #666;
}

.value-stack {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background-color: #fffacd;
    border-radius: 10px;
}

.total-value {
    font-size: 24px;
    margin-bottom: 10px;
}

.strikethrough {
    text-decoration: line-through;
    color: #999;
}

.your-price {
    font-size: 32px;
    font-weight: bold;
    color: #ff0000;
}

.price {
    background-color: #ffff00;
    padding: 5px 15px;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Urgency section */
.urgency-section {
    margin-bottom: 40px;
    text-align: left;
    margin-top: 2rem;
}

.urgency-box {
    background-color: #ff4444;
    color: white;
    padding: 25px;
    text-align: center;
    border-radius: 10px;
    border: 3px solid #780000;
}

.urgency-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.countdown {
    margin-top: 20px;
}

.timer {
    background-color: #ffff00;
    color: #ff0000;
    padding: 15px;
    font-size: 24px;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* CTA section */
.cta-section {
    margin-bottom: 40px;
}

.cta-box {
    text-align: center;
    background-color: #f0f8ff;
    padding: 40px;
    border-radius: 15px;
    border: 3px solid #ff6b35;
}

.cta-box h2 {
    font-size: 32px;
    color: #ff6b35;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cta-button {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    border: none;
    padding: 25px 50px;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    margin: 20px 0;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.button-subtext {
    font-size: 14px;
    font-weight: normal;
    text-transform: none;
    letter-spacing: normal;
}

.guarantees {
    margin-top: 30px;
}

.guarantees p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

/* .guarantee-section {
    margin-bottom: 40px;
}

.guarantee-box {
    background-color: #ff4444;
    color: white;
    padding: 25px;
    text-align: center;
    border-radius: 10px;
    border: 3px solid #780000;
} */


/* Final section */
.final-section {
    /* border-top: 2px solid #ff6b35; */
    padding-top: 30px;
    text-align: left;
}

.final-section p {
    margin-bottom: 15px;
    font-size: 18px;
}

.signature {
    text-align: left;
    margin: 30px 0;
    font-size: 20px;
    color: #333;
}

.signature-img {
    margin: 10px 0;
}

.signature-2 {
    font-family: var(--signature-font);
    color: #0000ff;
    font-size: clamp(3rem, 5vw, 5rem) !important;
}

.ps {
    background-color: #fffacd;
    padding: 20px;
    border-left: 5px solid #ff6b35;
    font-size: 16px;
    margin-top: 30px;
}

.ps-link {
    color: #ff6b35;
    text-decoration: underline;
    font-weight: bold;
}

.ps-link:hover {
    color: #ff0000;
}

/* Responsive styles */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }
    
    .main-headline {
        font-size: 28px;
    }
    
    .sub-headline {
        font-size: 20px;
    }
    
    .secret-reveal {
        font-size: 32px;
    }
    
    .cta-button {
        font-size: 22px;
        padding: 20px 30px;
    }
    
    .personal-photo {
        float: none;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .testimonials {
        flex-direction: column;
    }
}