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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: #333;
    background: #fff;
}

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

/* Header */
.article-header {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, rgba(253, 143, 20, 0.05), rgba(255, 245, 235, 0.3));
    border-bottom: 3px solid #fd8f14;
}

.main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fd8f14;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.3rem;
    color: #666;
    text-align: center;
    font-style: italic;
    margin-bottom: 30px;
}

.author-info {
    text-align: center;
    color: #888;
    font-size: 1rem;
}

.author-info strong {
    color: #fd8f14;
}

/* Article Content */
.article-content {
    padding: 60px 0;
}

.story-section {
    margin-bottom: 50px;
}

.story-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.story-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #fd8f14;
}

.story-section h3 {
    font-size: 1.5rem;
    color: #fd8f14;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

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

.story-paragraph.highlight {
    background: linear-gradient(135deg, rgba(253, 143, 20, 0.1), rgba(255, 245, 235, 0.4));
    padding: 25px;
    border-left: 5px solid #fd8f14;
    border-radius: 10px;
    font-style: italic;
    font-weight: 500;
}

.story-paragraph.quote {
    background: #f9f9f9;
    padding: 20px;
    border-left: 5px solid #ddd;
    border-radius: 8px;
    font-style: italic;
    color: #555;
}

.story-paragraph strong {
    color: #fd8f14;
    font-weight: 600;
}

.story-paragraph em {
    color: #666;
    font-style: italic;
}

/* Opening Section with Image */
.opening-section {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}

.opening-text {
    flex: 1;
}

.opening-image {
    flex: 0 0 300px;
}

.opening-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Slideshow */
.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: 50px auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-indicators {
    text-align: center;
    margin-top: 20px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #ddd;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: #fd8f14;
}

/* Key Insights Box */
.insight-box {
    background: linear-gradient(135deg, #fd8f14, #ffb366);
    color: white;
    padding: 35px;
    border-radius: 15px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(253, 143, 20, 0.2);
}

.insight-box h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.insight-box p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* About Author */
.about-author {
    background: linear-gradient(135deg, rgba(253, 143, 20, 0.05), rgba(255, 245, 235, 0.3));
    padding: 40px;
    border-radius: 20px;
    margin: 50px 0;
    border: 2px solid rgba(253, 143, 20, 0.1);
}

.about-author h3 {
    color: #fd8f14;
    font-size: 1.6rem;
    margin-bottom: 20px;
    text-align: center;
}

.credentials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.credential-item {
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.credential-item strong {
    color: #fd8f14;
    display: block;
    margin-bottom: 5px;
}

/* Call to Action - Subtle */
.final-cta {
    background: linear-gradient(135deg, rgba(253, 143, 20, 0.1), rgba(255, 245, 235, 0.4));
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin: 50px 0;
    border-left: 5px solid #fd8f14;
}

.final-cta h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #555;
}

.cta-button {
    display: inline-block;
    background: #fd8f14;
    color: white;
    padding: 15px 35px;
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(253, 143, 20, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 143, 20, 0.4);
}

.program-details {
    margin-top: 30px;
    text-align: left;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.program-details h4 {
    color: #fd8f14;
    margin-bottom: 15px;
}

.program-details ul {
    list-style: none;
    padding: 0;
}

.program-details ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.program-details ul li:before {
    content: "✓ ";
    color: #fd8f14;
    font-weight: bold;
    margin-right: 10px;
}

/* Client Stories */
.client-story {
    background: white;
    border-left: 5px solid #fd8f14;
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

.client-story h4 {
    color: #fd8f14;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.client-story::before {
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 4rem;
    color: rgba(253, 143, 20, 0.2);
    font-family: serif;
    font-weight: bold;
}

/* Author Section Styling */
.author-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 25px;
}

.author-photo {
    flex-shrink: 0;
}

.elena-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(253, 143, 20, 0.3);
    border: 4px solid white;
    transition: all 0.3s ease;
    object-fit: cover;
    object-position: center;
}

.elena-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(253, 143, 20, 0.4);
}

.author-info-text h3 {
    color: #fd8f14;
    font-size: 1.8rem;
    margin-bottom: 8px;
    margin-top: 0;
}

.author-tagline {
    font-style: italic;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .story-paragraph {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }

    .opening-section {
        flex-direction: column;
        gap: 20px;
    }

    .opening-image {
        flex: none;
        max-width: 100%;
    }

    .author-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .elena-photo {
        width: 100px;
        height: 100px;
        object-fit: cover;
        object-position: center;
    }
}