*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    color: #222;
}

.background {
    background-image: url("../media/images/headerfield.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    height: 100vh;
    max-height: 400px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
    box-sizing: border-box;
}
.background-hr {
/*rgb(84, 130, 121)*/
    background-color: rgb(92, 142, 132);
    padding: 10px;
}
.background-hr hr{
    border-top: dashed 5px rgba(255, 255, 255, 0.9);
    height: 5px;
    width: 100%;
}

.sec-banner {
    margin: 0;
    padding: 0;
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.sec-banner h1 {
    margin-bottom: 1rem;
    font-weight: 700;
}

.sec-banner p {
    margin: 0;
    font-size: 1.2rem;
}

.sec-intro {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.sec-intro-image img {
    max-width: 100%;
    border-radius: 5px;
}

.sec-intro-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: "Crimson Text", serif;
}

.sec-intro-text p {
    font-size: 1.1rem;
    line-height: 1.5;
    text-align: justify;
}

.sec-intro-text {
    padding: 30px;
}

.sec-about {
    background-color: rgb(245, 250, 250);
    padding: 60px 0;
}

.sec-about-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.sec-about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(62, 83, 83);
    margin-bottom: 40px;
    font-family: "Crimson Text", serif;
    text-align: center;
}

.sec-about-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(118, 145, 134, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sec-about-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(123, 189, 179, 0.2);
}

.sec-about-icon {
    font-size: 3rem;
    color: rgb(84, 130, 121);
    min-width: 60px;
    text-align: center;
}

.sec-about-text h3 {
    font-weight: 600;
    margin-bottom: 8px;
}

.sec-about-text p {
    margin: 0;
    font-size: 1rem;
    color: rgb(49, 63, 61);
    text-align: justify;
}

.sec3-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4b8582;
    margin-bottom: 40px;
    font-family: "Crimson Text", serif;
    text-align: center;
}

.sec3-container-info {
    padding: 20px;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sec3-container-info h2 {
    font-weight: 500;
    margin-bottom: 10px;
    font-family: "Crimson Text", serif;
    font-size: 1.5rem;
}

.sec3-container-info p {
    flex-grow: 1;
    font-family: "Crimson Text", serif;
    font-size: 1.1rem;
    text-align: justify;
}
    #sec3-1{
        background-color: rgb(232, 248, 244);
        border: 1px solid rgb(83, 95, 91);
        border-radius: 5px;
        box-shadow: 4px 4px rgb(161, 199, 190);
    }
    #sec3-2{
        background-color: rgb(211, 233, 227);
        border: 1px solid rgb(83, 95, 91);
        border-radius: 5px;
        box-shadow: 4px 4px rgb(161, 199, 190);
    }
    #sec3-3{
        background-color: rgb(195, 216, 210);
        border: 1px solid rgb(83, 95, 91);
        border-radius: 5px;
        box-shadow: 4px 4px rgb(161, 199, 190);
    }

.donation-section {
    width: 100%;
    padding: 20px;
    background: rgb(84, 130, 121);
    color: white;
    font-family: 'Lato';
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    text-align: left;
    box-sizing: border-box;
    cursor: default;
}

.donation-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.donation-text {
    max-width: 500px;
    padding: 0 10px;
    box-sizing: border-box;
}

.donation-text h1 {
    font-size: 2em;
    font-weight: 800;
    margin: 0 0 10px 0;
}

.donation-text p {
    font-size: 1.1em;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 0;
    font-family: "Lato", sans-serif;
}

.donate-button {
    font-size: 18px;
    background-color: rgb(71, 112, 104);
    border: 1px solid rgb(49, 77, 71);
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.donate-button:hover {
    background-color: white;
    box-shadow: 4px 4px rgba(48, 211, 195, 0.3);
    color: #075252;
}
