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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.8;
    text-align: center;
    padding: 40px 20px;
}

header {
    margin-bottom: 60px;
}

header h1 {
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 30px;
}

#logo {
    width: 220px;
    height: auto;
    cursor: pointer;
    border-radius: 20px;
    transition: transform 0.5s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

#logo:hover {
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 12px 20px rgba(0,0,0,0.2);
}

section {
    margin-bottom: 60px;
}

section h2 {
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 20px;
}

section p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

#social-media ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 50px;
    padding-top: 15px;
}

#social-media a {
    text-decoration: none;
    color: #0077cc;
    font-weight: 600;
    font-size: 1.2rem;
    transition: color 0.3s, transform 0.3s;
}

#social-media a:hover {
    color: #005fa3;
    transform: scale(1.1);
}
