* {
    font-family: 'Cormorant Garamond', serif;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

nav {
    padding: 15px 25px;
    background-color: #FFFAF5;
    box-shadow: 0 0 10px #ddd;
    position: sticky;
    top: 0;
    z-index: 2;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    color: #000;
    font-size: 25px;
    font-weight: 600;

    display: flex;
    align-items: center;
}

.logo img {
    width: 40px;
    margin-right: 8px;
}

.button-groups button {
    font-size: 16px;
    padding: 10px 15px;
    margin-left: 10px;
    background-color: #EDDBC9;
    border: none;
    cursor: pointer;

    transition: 0.4s ease-in;
}

.button-groups button:hover {
    background-color: #ebcdaf;
}

section {
    padding: 30px 50px;
}

.survival-title {
    font-size: 36px;
    text-align: center;
}

#survival {
    background-image: linear-gradient(rgba(241, 226, 166, 0.6), rgba(241, 226, 166, 0.6)), url(../img/bg2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.tips-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 25px 0;
}

.card {
    width: 20%;
    min-width: 320px;
    background-color: #F1E2A6;
    padding: 10px 20px;
    border-radius: 20px;
    margin: 10px;
    
    transition: 0.4s ease-in-out;
}

.card:hover {
    transform: scale(105%);
    background-color: #dbcc90;
}

.img-container {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 10px;
}

.img-container img {
    width: 100%;
}

.tip-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 8px;
}

.tip-info {
    font-size: 18px;
    text-align: justify;
    text-indent: 24px;
}

.last-tip {
    text-align: center;
    font-size: 24px;
    background-color: #F1E2A6;
    width: 50%;
    min-width: 300px;
    padding: 10px 20px;
    border-radius: 20px;
    margin: 0 auto;
    font-style: italic;
}

#about-us {
    background-color: #f5f5f5;
}

.big-title {
    font-size: 60px;
    text-align: center;
    font-weight: 800;
}

.about-title {
    font-size: 20px;
    text-align: center;
    font-weight: 500;
}

.person-container {
    padding: 40px 0 0;
}

.person {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: 75%;
    margin: 0 auto 36px;
    background-color: #F1E2A6;
    padding: 20px 25px;
    border-radius: 20px;
}

.person-img {
    width: 15%;
    min-width: 130px;
    margin-right: 20px;
    flex-shrink: 0;
}

.person-img img {
    width: 100%;
    border-radius: 10px;
}

.person-name {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 8px;
}

.person-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 8px;
}

.person-desc {
    font-size: 16px;
    text-align: justify;
}

#reflection {
    background-image: linear-gradient(rgba(241, 226, 166, 0.6), rgba(241, 226, 166, 0.6)), url(../img/bg3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.reflection-container {
    width: 70%;
    margin: 0 auto;
    background-color: rgba(241, 226, 166, 0.6);
    padding: 20px 30px;
    border-radius: 15px;
}

.reflection-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 10px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.reflection-title img{
    width: 50px;
    margin-right: 15px;
}

.reflection-content {
    text-align: justify;
    font-size: 18px;
}

.reflection-content p {
    margin-bottom: 10px;
    text-indent: 24px;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background-color: #FFFAF5;
    box-shadow: 0 0 10px #ddd;
}

.right-content {
    display: flex;
    flex-wrap: nowrap;
    font-size: 18px;
}

.copyright {
    margin-right: 30px;
}

.right-content a {
    text-decoration: none;
    color: #000;
}