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

@import url('https://fonts.googleapis.com/css2?family=Georgia:wght@400;700&family=Helvetica+Neue:wght@400;500;700&display=swap');

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    font-size: 16px;
}

/* Container Styles */
.header-content,
.featured-image,
.subtitle,
.notice-box,
.listicle-container,
.footer-content,
.list-item,
.testimonial,
.footer-section,
.footer-links,
.footer-disclaimer {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

/* Text Container Styles */
.text-content,
.subtitle,
.notice-box p,
p,
.text-content ul,
.testimonial {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Header Styles */
header {
    background: #ffffff;
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e6e6e6;
}

.header-content h1 {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 2rem;
    padding: 0 2rem;
}

.featured-image {
    margin: 2rem auto;
    padding: 0 2rem;
}

.featured-image img {
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
    object-fit: cover;
    display: block;
}

.subtitle {
    font-family: 'Georgia', serif;
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin: 2rem auto;
    padding: 0 2rem;
}

.notice-box {
    background-color: #f8f8f8;
    border: 1px solid #e6e6e6;
    padding: 2rem;
    margin: 2rem auto;
}

/* Main Content Styles */
.list-item {
    margin-bottom: 4rem;
    padding: 0 2rem 3rem;
    border-bottom: 1px solid #e6e6e6;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.list-item img {
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
    object-fit: cover;
    display: block;
}

.text-content {
    padding: 0;
    width: 100%;
}

h2 {
    font-family: 'Georgia', serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

p {
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: #333;
}

.text-content ul {
    margin: 1.5rem auto;
    padding-left: 2rem;
    list-style-type: disc;
}

.text-content ul li {
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    color: #333;
}

.read-more {
    display: block;
    width: fit-content;
    margin: 2rem auto 0;
    background: linear-gradient(135deg, #1877f2 0%, #0d6efd 100%);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Testimonial Styles */
.testimonial {
    background: #f8f9fa;
    border-left: 4px solid #1877f2;
    padding: 2rem;
    margin: 3rem auto;
    font-style: italic;
}

.testimonial-content {
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #1877f2;
    font-style: normal;
    margin-bottom: 0.5rem;
}

.testimonial-location {
    color: #666;
    font-size: 0.9rem;
    font-style: normal;
}

.testimonial-separator {
    max-width: 800px;
    margin: 3rem auto;
    border: none;
    border-top: 1px solid #e6e6e6;
}

/* Footer Styles */
footer {
    background: #f8f8f8;
    padding: 4rem 0;
    margin-top: 4rem;
    border-top: 1px solid #e6e6e6;
}

.footer-content {
    padding: 0 2rem;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1rem;
}

.footer-disclaimer {
    padding-top: 2rem;
    border-top: 1px solid #e6e6e6;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .header-content h1 {
        font-size: 3.5rem;
    }

    .content-wrapper {
        gap: 3rem;
    }

    h2 {
        font-size: 2.2rem;
        margin-top: 0;
    }

    p, .text-content ul li {
        font-size: 1.2rem;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    body {
        font-size: 14px;
    }

    .header-content h1 {
        font-size: 1.8rem;
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }

    .subtitle {
        font-size: 1rem;
        padding: 0 1rem;
        margin: 1.5rem auto;
    }

    .notice-box {
        padding: 1.5rem;
        margin: 1.5rem auto;
    }

    h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    p, .text-content ul li {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .testimonial {
        padding: 1.5rem;
        margin: 2rem auto;
    }

    .testimonial-content {
        font-size: 0.95rem;
    }

    .read-more {
        font-size: 0.95rem;
        padding: 0.8rem 1.5rem;
        margin: 1.5rem auto 0;
    }

    .list-item {
        margin-bottom: 3rem;
        padding: 0 1rem 2rem;
    }

    .footer-content {
        padding: 0 1rem;
    }

    .footer-links {
        gap: 1rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .footer-disclaimer p {
        font-size: 0.8rem;
    }
}