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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.8; /* Increased for better readability */
    color: #222; /* Slightly darker for better contrast */
    background-color: #fff;
    font-size: 18px; /* Increased base font size for 50+ audience */
}

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

/* Header Styles */
.header {
    background-color: #ff1744;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top {
    background-color: #ff1744;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.header-icons {
    display: flex;
    gap: 20px;
    font-size: 20px;
}

.header-yellow-bar {
    height: 8px;
    background-color: #ffd700;
}

/* Featured Article Section */
.featured-article {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    margin: 40px 0;
    padding: 20px 0;
}

.featured-content {
    display: contents;
}

.featured-text {
    grid-column: 1;
}

.featured-label {
    display: inline-block;
    background-color: #fff3cd;
    color: #333;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
    border-radius: 3px;
}

.featured-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: #ff1744;
    margin: 10px 0 20px 0;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.featured-description {
    font-size: 18px; /* Increased from 14px */
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333; /* Darker for better contrast */
}

.featured-sidebar {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-item {
    background-color: #f5f5f5;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.sidebar-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.sidebar-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.sidebar-item p {
    padding: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

/* Video Section */
.video-section {
    margin: 50px 0;
    padding: 30px 0;
}

.video-header {
    background-color: #ff1744;
    color: white;
    padding: 15px 20px;
    margin-bottom: 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    text-align: center;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.video-container img {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 23, 68, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background-color: rgba(255, 23, 68, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

/* CTA Button */
.cta-button {
    display: block;
    margin: 0 auto;
    background-color: #ff1744;
    color: white;
    border: none;
    padding: 18px 40px; /* Larger padding for easier clicking */
    font-size: 20px; /* Increased from 14px */
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1.5px;
}

.cta-button:hover {
    background-color: #e60032;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 23, 68, 0.4);
}

/* Benefits Section */
.benefits-section {
    margin: 50px 0;
    padding: 30px 0;
}

.benefits-section h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.benefit-item {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.benefit-item h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.benefit-item p {
    font-size: 17px; /* Increased from 14px */
    color: #333;
    line-height: 1.8;
}

/* Recipe Section */
.recipe-section {
    margin: 50px 0;
    padding: 30px 0;
}

.recipe-header {
    background-color: #ff1744;
    color: white;
    padding: 15px 20px;
    margin-bottom: 20px;
    text-align: center;
}

.recipe-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    margin: 0;
}

.recipe-header h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
    margin: 5px 0 0 0;
}

.recipe-image {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 0 auto 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Timing Section */
.timing-section {
    margin: 50px 0;
    padding: 30px;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.timing-section h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.timing-section p {
    font-size: 18px; /* Increased from 14px */
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials-section {
    margin: 50px 0;
    padding: 30px 0;
}

.testimonials-section h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 600;
}

.testimonials-subtitle {
    text-align: center;
    color: #999;
    font-size: 14px;
    margin-bottom: 30px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.testimonial-card {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.testimonial-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 4px solid #ff1744;
}

.testimonial-card h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.testimonial-card p {
    font-size: 16px; /* Increased from 13px */
    color: #333;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-card .location {
    font-size: 12px;
    color: #999;
    font-weight: 500;
}

/* Testimonials Callout */
.testimonials-callout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.callout-box {
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.callout-box.red {
    background-color: #ff1744;
    color: white;
}

.callout-box.white {
    background-color: white;
    border: 2px solid #ff1744;
    color: #333;
}

.callout-box h3 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.callout-box p {
    font-size: 13px;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #f5f5f5;
    margin-top: 50px;
}

.footer-yellow-bar {
    height: 8px;
    background-color: #ffd700;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 30px 0;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff1744;
}

.social-icons {
    display: flex;
    gap: 15px;
    font-size: 18px;
}

.social-icons span {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.social-icons span:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #ddd;
    font-size: 12px;
    color: #999;
}

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

.footer-bottom a:hover {
    color: #ff1744;
}

/* Responsive Design */
@media (max-width: 768px) {
    .featured-article {
        grid-template-columns: 1fr;
    }

    .featured-sidebar {
        grid-column: 1;
        grid-row: auto;
    }

    .featured-title {
        font-size: 24px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-callout {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-header,
    .recipe-header h2,
    .recipe-header h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .featured-title {
        font-size: 18px;
    }

    .featured-description {
        font-size: 13px;
    }

    .video-header,
    .recipe-header h2,
    .recipe-header h3 {
        font-size: 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .cta-button {
        font-size: 12px;
        padding: 10px 20px;
    }

    .testimonial-card img {
        width: 100px;
        height: 100px;
    }
}

/* Main Navigation */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #ffd700;
}

