/* GENERAL */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f5f5;
    color: #333;
}

/* HEADER */
header {
    background: #111;
    padding: 15px 20px;
}

nav {
    display: flex;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s;
}

nav a:hover,
nav a.active {
    color: #ffcc00;
}

/* CONTACT SECTION */
.contact-section {
    padding: 40px 20px;
    text-align: center;
}

.contact-section h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

/* CONTACT BOXES */
.contact-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.contact-card {
    background: white;
    width: 300px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 12px rgba(0,0,0,0.15);
    text-align: center;
}

.contact-card h2 {
    margin-bottom: 10px;
}

.contact-btn {
    display: inline-block;
    margin-top: 15px;
    background: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #1da851;
}

/* FOOTER */
footer {
    margin-top: 40px;
    background: #111;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
}
