body {
    font-family: "Poppins", sans-serif;
    color: #1D232A;
}

.text-content {
    font-weight: 400;
    font-size: 20px;
    line-height: 34px;
    letter-spacing: 0%;
}

.hero-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
}

.text-heading {
    font-family: "Rufina", serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #0E7E5D;
}

.logo {
    font-weight: bold;
    font-size: 24px;
    color: #1D232A;
}

/* .nav-link {
            font-weight: 500;
            color: #1D232A;
            position: relative;
            transition: color 0.3s;
        } */

/* .nav-link:hover {
            color: #0d8a59;
        } */

/* .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -3px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #0d8a59;
            transition: width 0.3s;
        } */
/* 
        .nav-link:hover::after {
            width: 40px;
        } */

.btn-primary {
    background-color: #0d8a59;
    border-color: #0d8a59;
    border-radius: 30px;
    padding: 11px 30px;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #0E7E5D;
    border-color: #0E7E5D;
}

h1,
h2,
h3,
h4,
.rufina-font {
    font-family: "Rufina", serif;
    font-weight: 700;
}

.text-primary-custom {
    color: #0d8a59 !important;
}

.icon-container {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 1rem;
}

.contact-card {
    background-color: #0E7E5D0D;
    border: 1px solid #1D232A1A;
    border-radius: 8px;
    padding: 2rem 1rem;
    height: 100%;
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.image-collage {
    position: relative;
    height: 450px;
}

.image-collage .img-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 60%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-collage .img-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 60%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-collage .decoration {
    position: absolute;
    bottom: 0;
    left: 40px;
    width: 100px;
    z-index: 2;
}

.footer {
    background-color: #1e3a53;
    color: white;
    padding: 4rem 0 2rem;
}

.footer h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: white;
    color: #1e3a53 !important;
    border-radius: 50%;
    margin-right: 10px;
    transition: opacity 0.3s;
}

.social-icon:hover {
    opacity: 0.8;
    text-decoration: none !important;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-info-item i {
    margin-right: 10px;
    margin-top: 5px;
}

.newsletter-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    width: 100%;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
}

.short {
    height: 52px;
    border-radius: 20px;
    padding-left: 20px;
}

.long {
    height: 150px;
    border-radius: 20px;
    padding: 20px;
}

@media (max-width: 768px) {
    .image-collage {
        height: 350px;
        margin-bottom: 2rem;
    }
}