* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Hero Section - Updated to match second image */
.hero-section {
    background: #0070cc;
    color: white;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 60px 40px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 80px;
}

.hero-text-content {
    flex: 1;
    max-width: 900px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    color: white;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: white;
}

.hero-cta-button {
    background-color: white;
    color: #1a8bcc;
    border: none;
    padding: 16px 36px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero-cta-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.hero-cta-button:active {
    transform: translateY(0);
}

.hero-image-wrapper {
    flex-shrink: 0;
    max-width: 450px;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 60px 0 40px;
    color: #1a1a1a;
}

/* Related Articles Section */
.related-articles {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.article-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    min-height: 80px;
}

.article-card .read-more {
    display: inline-block;
    padding: 0 20px 20px;
    color: #0088cc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.article-card .read-more:hover {
    color: #006699;
}

/* Info Box Section */
.info-box {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.info-container {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.info-container .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.info-container h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.info-container p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
}

/* Content Wrapper for Two-Column Layouts */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.content-wrapper.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.content-wrapper.reverse > * {
    direction: ltr; /* Reset text direction */
}

.content-wrapper.reverse .image-content {
    order: -1;
}

/* Text Content */
.text-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.3;
}

.text-content p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
}

.underline {
    text-decoration: underline;
    text-decoration-color: #00bcd4;
    text-decoration-thickness: 3px;
    text-underline-offset: 5px;
}

/* Steps List */
.steps-list {
    list-style: none;
    margin: 30px 0;
}

.steps-list li,
.care-steps li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.steps-list .arrow,
.care-steps .arrow {
    color: #0088cc;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.steps-list li div,
.care-steps li div {
    flex: 1;
}

.care-steps {
    list-style: none;
    margin: 30px 0;
}

/* Highlight Text */
.highlight-text {
    font-weight: 600;
    margin-top: 30px;
    color: #1a1a1a;
}

/* CTA Button */
.cta-button {
    background-color: #0088cc;
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #006699;
    transform: translateY(-2px);
}

.cta-button:active {
    transform: translateY(0);
}

/* Image Content */
.image-content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Arrange Section */
.arrange-section {
    background: #ffffff;
}

/* When Call Section */
.when-call-section {
    background: #f8f9fa;
}

/* Importance Section */
.importance-section {
    background: #ffffff;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        gap: 50px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-image-wrapper {
        max-width: 380px;
    }
}

@media (max-width: 968px) {
    .hero-section {
        min-height: auto;
        padding: 50px 30px;
    }

    .hero-container {
        flex-direction: column;
        gap: 40px;
    }

    .hero-image-wrapper {
        max-width: 100%;
        order: 2;
    }

    .hero-text-content {
        text-align: left;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-wrapper.reverse .image-content {
        order: 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .text-content h2 {
        font-size: 1.8rem;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .info-container {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .text-content h2 {
        font-size: 1.5rem;
    }

    .content-wrapper {
        padding: 40px 20px;
    }
}