/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Logo Header Styles */
.logo-header {
    background-color: #fff;
    height: 60px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.logo-header .container {
    padding: 0 20px;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

.logo {
    font-family: 'Merriweather', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    display: block;
    height: 60px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

/* Add responsive styles for logo */
@media (max-width: 768px) {
    .logo img {
        height: 40px;
        width: auto;
    }
    
    .logo-header {
        height: 50px;
    }
    
    .logo {
        height: 50px;
    }
}

/* Header Styles */
header {
    background-color: #fff;
    padding: 40px 0;
    margin-bottom: 5px;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.author-info {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    margin-right: 10px;
    font-weight: 700;
    font-size: 0.85rem;
}

.date {
    font-size: 0.85rem;
}

.author-info span {
    margin-right: 0;
}

/* Hero Section Styles */
.hero-section {
    background-color: #fff;
    margin-bottom: 40px;
}

.hero-section .container {
    padding: 0 25px;
}

.hero-section .full-width-content {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

.intro {
    padding: 30px 0;
}

.intro p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Offer Section Styles */
.offer-sections {
    background-color: #fff;
    margin-bottom: 40px;
}

.offer-sections .container {
    padding: 0 25px;
}

.full-width-content {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 25px;
}

.offer-section {
    padding: 0;
    border-bottom: 2px dotted #ddd;
    width: 100%;
}

.offer-section h2 {
    padding: 20px 0 10px 0;
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 0;
    line-height: 1.3;
    background-color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Add separate style for reminder heading */
.offer-section h2.reminder-heading {
    display: block;
    padding: 50px 0 10px 0;
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 0;
    line-height: 1.3;
    background-color: #fff;
}

.offer-section h2.reminder-heading strong {
    display: inline;
}

.offer-section .offer-content {
    padding: 0;
    background-color: #fff;
    width: 100%;
}

.section-number {
    background-color: #1a1a1a;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 4px;
    flex-shrink: 0;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-right: 10px;
}

.reviews {
    color: #666;
    font-size: 0.9rem;
}

.offer-content p {
    margin-bottom: 20px;
    margin-top: 0;
    font-size: 1.1rem;
    color: #444;
    padding: 0;
}

.benefits {
    list-style-type: none;
    padding: 0;
    margin: 1.5rem 0;
}

.benefits li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

.benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
}

.benefits li:last-child {
    margin-bottom: 0;
}

/* CTA Styles */
.cta {
    text-align: center;
    margin-top: 30px;
    padding: 0;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.button {
    display: block;
    background-color: #e74c3c;
    color: #fff !important;
    padding: 18px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    letter-spacing: 0.5px;
}

.button:after {
    content: '→';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.button:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.button:hover:after {
    transform: translateY(-50%) translateX(5px);
}

.limited-time {
    color: #e74c3c;
    font-weight: 600;
    margin-top: 10px;
    font-size: 0.9rem;
}

/* Disclaimer Styles */
.disclaimer {
    padding: 20px;
    margin: 40px 0;
    font-size: 0.9rem;
    color: #666;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.disclaimer strong {
    color: #1a1a1a;
}

.disclaimer p {
    margin: 0;
}

/* Footer Styles */
footer {
    background-color: #333;
    padding: 20px 0;
    text-align: center;
    color: #fff;
    font-size: 0.9rem;
    margin-top: 40px;
    box-shadow: 0 -2px 4px rgba(0,0,0,0.05);
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4CAF50;
}

.separator {
    margin: 0 10px;
    color: #666;
}

/* Headline Styles */
h1, .offer-section h2 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.offer-section h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 20px 0;
        margin-bottom: 20px;
    }

    .hero-section {
        margin-bottom: 20px;
    }

    .hero-section .container {
        padding: 0 15px;
    }

    .intro {
        padding: 20px 0;
    }

    h1 {
        font-size: 2rem;
    }

    .offer-section h2 {
        padding: 30px 0 10px 0;
        font-size: 1.5rem;
        flex-wrap: nowrap;
        gap: 10px;
    }

    .cta {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin-top: 20px;
    }

    .button {
        display: block;
        width: 100%;
        max-width: 100%;
        padding: 15px 20px;
        font-size: 1.1rem;
        margin: 0;
    }

    /* Update container padding for mobile */
    .container {
        padding: 0 15px;
    }
    
    .full-width-content {
        padding: 0 15px;
    }
    
    .offer-sections .container {
        padding: 0 15px;
    }
    
    .hero-section .container {
        padding: 0 15px;
    }

    .disclaimer {
        margin: 20px 0;
        padding: 15px;
    }

    .offer-section {
        padding: 0;
    }

    .section-number {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .offer-section h2.reminder-heading {
        padding: 30px 0 10px 0;
        font-size: 1.5rem;
    }

    .ownership-question {
        width: 100%;
        padding: 0;
        margin: 20px 0;
    }
    
    .ownership-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .ownership-button {
        width: 100%;
        max-width: 100%;
        padding: 15px 20px;
        font-size: 1.2rem;
        margin: 0;
        display: block;
    }
    
    .offer-content {
        padding: 0;
        width: 100%;
    }
}

/* Print Styles */
@media print {
    body {
        background-color: #fff;
    }

    .offer-section {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .button {
        display: none;
    }

    .limited-time {
        display: none;
    }
}

/* Ownership Question Styles */
.ownership-question {
    margin: 30px 0;
    text-align: center;
    width: 100%;
}

.checkbox {
    color: #4CAF50;
    font-weight: bold;
    margin-right: 5px;
    font-size: 1.1rem;
}

.question-text {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.ownership-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* Ownership Button Styles */
.ownership-button {
    display: block;
    background-color: #4CAF50;
    color: #fff !important;
    padding: 18px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    letter-spacing: 0.5px;
}

.ownership-button:after {
    content: '→';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.ownership-button:hover {
    background-color: #388E3C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.ownership-button:hover:after {
    transform: translateY(-50%) translateX(5px);
}

/* Footer Spacer */
.footer-spacer {
    height: 150px;
    background-color: #fff;
}

/* Content Link Styles */
.offer-content a {
    color: #2196F3;
    text-decoration: none;
    transition: all 0.3s ease;
}

.offer-content a:hover {
    color: #1976D2;
}

.offer-content a strong {
    color: #2196F3;
    border-bottom: 2px solid #2196F3;
}

.offer-content a:hover strong {
    color: #1976D2;
    border-bottom-color: #1976D2;
}
