body {
    background-color: #f7f3ee;

    font-family: "Gabriela", serif;
    font-weight: 400;
    font-style: normal;
}

p {
    font-family: "Cactus Classical Serif", serif;
    font-weight: 400;
    font-style: normal;
}

.navbar-nav li {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.hero-section {
    position: relative;
    height: 407px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
    padding-left: 120px;
    z-index: 1;
    overflow: hidden;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #1e1e1e 0%, rgba(30, 30, 30, 0) 100%);
    z-index: 2;
}

.hero-text {
    position: relative;
    font-family: 'Amethysta', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 57px;
    color: #ffedca;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    white-space: pre-line;
    z-index: 3;
}

.notice-container {
    max-width: 1000px;
    margin: 50px auto;
}

.notice-title {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.notice-card {
    background: #fff;
    border: 1px solid #f4c48d;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.notice-card:not(:last-child) {
    border-bottom: none;
}

.notice-card:hover {
    background: #fcf9f5;
}

.notice-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.notice-left img {
    width: 32px;
    height: 32px;
}

.notice-text {
    font-size: 16px;
    margin: 0;
    color: #333;
}

.notice-actions {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-right: 50px;
}

.notice-actions a {
    color: #000;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
}

.notice-actions a i {
    font-size: 18px;
    display: block;
    margin-bottom: 2px;
}

@media (max-width: 576px) {
    .notice-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .notice-actions {
        width: 100%;
        justify-content: space-between;
        margin-right: 0;

    }
}

@media (max-width: 768px) {

    .navbar-brand span {
        font-size: 14px;
    }

    .hero-section {
        padding-left: 20px;
        height: 300px;
    }

    .hero-text {
        font-size: 32px;
        line-height: 40px;
    }

}

@media (max-width: 480px) {
    .hero-text {
        font-size: 28px;
        line-height: 34px;
    }

    .section-title {
        font-size: 24px;
        line-height: 30px;
    }


}