/* Importing Avenir font */
@import url('https://fonts.googleapis.com/css2?family=Avenir:wght@400;700&display=swap');

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

/* Body Styling */
body {
    font-family: 'Avenir', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff; /* White background */
}

/* Container */
.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Header Styling */
.header {
    background: #C4D3C4; /* Soft green */
    padding: 1rem 0;
}

.header .logo {
    float: left;
    color: #fff;
    font-size: 1.5rem;
}

.header .navigation {
    float: right;
}

.header .navigation a {
    margin: 0 15px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: #F2CAC3; /* Light pink */
    color: #333;
    padding: 2rem 0;
    text-align: center;
}

.hero .btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin-top: 1rem;
    background: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
}

/* Section Styling */
section {
    padding: 2rem 0;
}

/* About Section */
.about {
    background: #f0f0f0; /* Light gray */
    text-align: center;
}

/* Facebook Posts Section */
.facebook-posts .posts {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.facebook-posts .post {
    width: 30%;
    background: #fff;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.facebook-posts .post h3 {
    margin-bottom: 1rem;
}

/* YouTube Videos Section */
.youtube-videos .videos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.youtube-videos .videos iframe {
    margin: 1rem;
}

/* Resources Section */
.resources .resource
