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

body {
    font-family: 'Times New Roman', Times, serif;
    background-color: #b5d2dd;
    margin: 0;
}

.header {
    background-color: #f8faf0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 230px;
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    font-weight: bold;
    color: #000;
    position: relative;
}

.nav-menu .active {
    color: #fff;
    background-color: #b5d2dd;
    padding: 5px 10px;
    border-radius: 5px;
}

.social-icons img {
    width: 30px;
    margin-left: 10px;
}

main {
    padding: 40px;
    background-color: #b5d2dd;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-section {
    text-align: center;
    padding-bottom: 40px;
}

.intro-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.intro-section p {
    font-size: 1.1em;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 800px;
}

.tips-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tip {
    display: flex;
    gap: 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    align-items: center;
}

.tip figure {
    flex-shrink: 0;
}

.tip .image {
    width: 150px;
    height: auto;
    border-radius: 10px;
}

.tip h3 {
    font-weight: bold;
    margin-top: 10px;
}

.tip p {
    flex: 1;
    font-size: 1.1em;
    line-height: 1.6;
}

.text-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
   
}

.text-content h3 {
    margin-bottom: 10px;
}

footer {
    background-color: #f8faf0;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
    border-top: 1px solid #ccc;
}

footer p {
    color: #777;
}