body {
    font-family: 'Unbounded', sans-serif;
    background: url('backphoto.webp') no-repeat center center fixed;
    background-size: cover;
    color: white;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    background-color: rgba(0, 0, 0, 0.9);
    height: 60px;
    padding: 0 15px;
}

.navbar-title {
    color: white;
    font-size: 1.3rem;
}

.hero-section {
    padding: 60px 20px 10px;
    text-align: center;
}

.hero-section h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1rem;
    color: #ccc;
}

.cta-button {
    margin-top: 20px;
    padding: 10px 30px;
    border: none;
    border-radius: 30px;
    background: #6c5ce7;
    color: white;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #7f70f1;
}

.card-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 40px 20px;
}

.info-card {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    padding: 20px;
    max-width: 300px;
    text-align: center;
    color: white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.info-card h4 {
    font-size: 1.4rem;
    color: #a29bfe;
    margin-bottom: 0.5rem;
}

.info-card p {
    font-size: 0.95rem;
}

footer {
    background-color: rgba(0, 0, 0, 0.85);
    padding: 10px 15px;
    text-align: center;
    font-size: 0.8rem;
    margin-top: auto;
}

.social-icons button {
    background: none;
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 6px;
    margin: 0 4px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}

.social-icons button:hover {
    background-color: #6c5ce7;
}

.social-icons img {
    width: 18px;
    height: 18px;
}
