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

body {
    font-family: 'Helvetica', Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    overflow-x: hidden;
    scroll-behavior: smooth;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    background-image: url('https://images.pexels.com/photos/844124/pexels-photo-844124.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 150px 20px;
    text-align: center;
    position: relative;
}

.hero .hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero .hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

/* Main Content Section */
.content {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.article {
    margin-bottom: 50px;
}

.article h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.article p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

/* Conclusion Section */
.conclusion h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.conclusion p {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

/* SVG for icons in the sections */
svg.icon {
    fill: #ff6347;
    margin-bottom: 15px;
}

footer {
    margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero .hero-content p {
        font-size: 1rem;
    }

    .article h2 {
        font-size: 1.8rem;
    }

    .article p {
        font-size: 1rem;
    }
}

/* Section Styling */
.article {
    padding: 80px 20px;
    background-color: #f7f7f7;
    margin-bottom: 50px;
}

.article h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.article-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.text {
    flex: 1;
    max-width: 55%;
}

.text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.image {
    flex: 1;
    max-width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Hover effect for the image */
.image img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Section Divider for Modern Look */
.article:before {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #ff6347; /* Accent color */
    margin: 20px auto;
}

/* Responsive Layout */
@media (max-width: 768px) {
    .article-content {
        flex-direction: column;
        text-align: center;
    }

    .text {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .image {
        max-width: 100%;
    }

    .image img {
        width: 80%;
    }
}
