/* Global Typography */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    color: #333;
}

/* Header */
header {
    background: #1f1f1f;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

header h1 {
    margin: 0;
    font-size: 2.4rem;
}

header p {
    font-size: 1.1rem;
    opacity: 0.85;
}

/* Hero Section */
.hero {
    max-width: 800px;
    margin: 60px auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0,0,0,0.12);
}

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

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

/* Button */
.button {
    display: inline-block;
    padding: 12px 24px;
    background: #2a2a2a;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s;
}

.button:hover {
    background: #444;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    margin-top: 60px;
    background: #e9e9e9;
    color: #555;
}

.small-img {
    max-width: 250px;   /* or any size you prefer */
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.social-icons {
    display: inline-flex;
    gap: 30px;
}

.social-icons a {
    background: white;
    border-radius: 50%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Make the circle a fixed size */
    width: 60px;
    height: 60px;

    /* Soft shadow for a clean modern look */
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);

    /* Smooth hover */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.35);
}

/* Keep your icon image rules */
.social-icons img {
    height: 40px !important;
    width: auto !important;
}