* {
    margin: 0;
    padding: 0;
    font-family: var(--defFontFamily, Arial, sans-serif);
    line-height: 1.5;
    box-sizing: border-box;
}

.main1 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 60px 0px;
    background-color: rgb(0, 134, 91);
    color: white;
}

.main1-icon {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main1-icon img {
    width: 40px;
    height: 40px;
}

.main1 h1 {
    font-size: var(--defXXXLFont);
    font-weight: 400;
}

.main1 p {
    font-size: var(--defMFont);
    text-align: center;
}

/* ------------------------------------------------------------------------------------------- */

/* Main 2 Layout */
.main2 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    padding: 60px 120px;
    background-color: #f9f9f9;
}

.left {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    box-sizing: border-box;
}


/* Topic 1 (Get In Touch) Styles */
.main2-topic1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main2-topic1 h2 {
    font-size: var(--defLFont);
    font-weight: 400;
    margin-bottom: 10px;
}

.main2-topic1-container {
    display: flex;
    gap: 20px;
    background-color: #fff;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main2-topic1-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.main2-topic1-container-icon {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.main2-topic1-container-icon img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    padding: 13px;
    background-color: rgb(208, 250, 229);
}

.main2-topic1-container-content h3 {
    font-size: var(--defSFont);
    font-weight: 400;
    margin-bottom: 10px;
}

.main2-topic1-container-content-text p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

/* Topic 2 (Connect With Us) Styles */
.main2-topic2 {
    margin-top: 30px;
    color: white;
}

.main2-topic2-container {
    background-color: #00875E;
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    /* Aligned left as per design */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.main2-topic2-container h2 {
    font-size: var(--defMFont);
    font-weight: 600;
    margin-bottom: 15px;
}

.main2-topic2-container p {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 80%;
}

.social {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    flex: 1;
    /* Distribute space evenly */
    min-width: 80px;
}

.social-link a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    /* Semi-transparent white for card effect */
    padding: 15px 10px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.social-link a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.social-link a img {
    width: 30px;
    height: 30px;
    margin-bottom: 8px;
    /* Removed specific background, assuming icons are suitable or white */
    filter: brightness(0) invert(1);
    /* Ensure icons are white if they aren't already */
}

.right {
    width: 50%;
    box-sizing: border-box;
}

.main2-topic3 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main2-topic3 h2 {
    font-size: var(--defLFont);
    font-weight: 400;
}

/* Main 3 (Find Us on Campus) Styles */
.main3 {
    padding: 60px 80px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.main3-header {
    text-align: center;
}

.main3-header h2 {
    font-size: var(--defXLFont);
    font-weight: 400;
    margin-bottom: 15px;
}

.main3-header p {
    font-size: var(--defSFont);
    color: #666;
    line-height: 1.6;
}

.main3-map {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.main3-cards {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 30px;
    margin-top: 20px;
}

.info-card {
    flex: 1;
    background-color: #f0fdf9;
    /* Light mint green matching screenshot */
    padding: 30px 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.card-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.4;
}

/* ---------------------------------------------------------------------------- */

.questions {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding-top: 70px;
    padding-bottom: 70px;
    background-color: rgb(236, 253, 245);
}

.questions h3 {
    font-size: 2.5rem;
    font-weight: 400;
}

.questionsA {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    width: 900px;
    max-width: 900px;
    display: flex;
    gap: 5px;
    flex-direction: column;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.079);
}

.questionsA h2 {
    font-size: var(--defSFont);
    font-weight: 400;
}

.questionsA p {
    color: #4a5568;
}

/* Main 5 (We're Here to Help!) Styles */
.main5 {
    background-color: #00875E;
    padding: 80px 20px;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.main5-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.main5-content img {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
    /* White icon */
    margin-bottom: 10px;
}

.main5-content h1 {
    font-size: var(--defXLFont);
    font-weight: 400;
}

.main5-content p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.main5-buttons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.main5-buttons button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 50px;
    min-width: 160px;
}

.btn-message {
    background-color: white;
    color: #00875E;
    border: none;
}

.btn-message:hover {
    background-color: #f0fdf9;
    transform: translateY(-2px);
}

.btn-message img {
    width: 20px;
    height: 20px;
}
