/* General Section Styles */
section {
    padding: 60px 0;
}

/* Headings */
h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
}

/* Paragraphs */
p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Team Section Specific Styles */
.team-section {
    background-color: #f9f9f9;
    text-align: center;
}

.team-member {
    margin-bottom: 30px;
    padding: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.team-member img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.team-member:hover img {
    transform: scale(1.1);
}

.team-member h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.team-member p {
    font-size: 1rem;
    color: #777;
    margin-bottom: 10px;
}

.team-member .social-icons {
    margin-top: 15px;
}

.team-member .social-icons a {
    margin: 0 10px;
    color: #333;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.team-member .social-icons a:hover {
    color: #007bff;
}

/* Footer Styles */
.footer {
    background: #333;
    color: #fff;
    padding: 20px 0;
}

.footer p {
    margin: 0;
}

.footer .social-icons {
    margin-top: 10px;
}

.footer .social-icons a {
    margin: 0 10px;
    color: #fff;
    font-size: 1.2rem;
}

.footer .social-icons a:hover {
    color: #007bff;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #007bff;
    color: #3a0f80;
    border: none;
    border-radius: 50%;
    padding: 10px 15px;
    cursor: pointer;
    display: none;
    transition: background 0.3s;
}

.scroll-to-top:hover {
    background: #14477e;
}