/* Resetting default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Header / Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #005A9C;
    padding: 20px;
    color: white;
}

header .logo h1 {
    font-size: 2rem;
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: #FFD700;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #005A9C;
    height: 100vh;
    padding: 0 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    padding: 20px;
    z-index: 1;
    position: sticky;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-btn {
    background-color: #FFD700;
    color: #333;
    padding: 12px 30px;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-btn:hover {
    background-color: #ffcc00;
    color: white;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

/* About OSIS Section */
.about {
    background-color: #f4f4f4;
    padding: 50px 20px;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #005A9C;
}

.about p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    color: #005A9C;
    margin-bottom: 10px;
}

/* Anggota OSIS Section */
.team {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.team h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.team-members {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.team-member h3 {
    font-size: 1.5rem;
    color: #005A9C;
}

.team-member p {
    font-size: 1.2rem;
    color: #777;
}

/* Contact Form Section */
.contact-section {
    background-color: #ffffff;
    padding: 50px 20px;
    text-align: center;
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-section p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f3f3f3;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.input-group textarea {
    height: 150px;
    resize: vertical;
}

.g-recaptcha {
    margin: 20px 0;
}

.submit-btn {
    background-color: #005A9C;
    /* Biru */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
}

.submit-btn:hover {
    background-color: #003a6d;
}

/* Footer */
footer {
    background-color: #005A9C;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

/* Media Sosial */
.social-media {
    text-align: center;
    margin-top: 50px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease-in-out;
}

.social-icons a img:hover {
    transform: scale(1.1);
}

/* Pengaturan lainnya yang sudah ada tetap dipertahankan */