/* Basic CSS reset for consistency */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f0f1f3;  /* Light grayish background */
    color: #333;  /* Dark gray text */
    line-height: 1.6;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff; /* Off-white container */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #d1d1d1;  /* Slightly darker border for definition */
}

header h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #1c3a63;  /* Darker, richer blue for the header */
    font-size: 2.7rem;  /* Increased font size for more impact */
}

.photo {
    text-align: center;
    margin-bottom: 20px;
}

.photo img {
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);  /* Stronger shadow for definition */
    border: 5px solid #e0e0e0;  /* Light gray border around the photo */
}

.announcement, .contact-info, .social-media {
    margin-bottom: 20px;
    padding: 20px;
    background-color: #f7fafc;  /* Slightly cooler light gray for more contrast */
    border-radius: 8px;
    border: 1px solid #d1d1d1;  /* Subtle but defined borders */
}

h2 {
    color: #1c3a63;  /* Dark blue for headers */
    margin-bottom: 10px;
    border-bottom: 2px solid #4a90e2;  /* Accent border under headings */
    padding-bottom: 5px;
}

a {
    color: #4a90e2;  /* Calming blue for links */
    text-decoration: none;
    font-weight: bold;  /* Bold links for emphasis */
}

a:hover {
    text-decoration: underline;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

ul li {
    margin-bottom: 10px;
}

/* Additional styles for social media icons */
.social-media ul {
    list-style-type: none;
    padding-left: 0;
}

.social-media li {
    margin-bottom: 10px;
    display: flex;
    align-items: center; /* Aligns icon with text */
}

.social-media a {
    color: #4a90e2;
    text-decoration: none;
    font-weight: bold;
}

.social-media a:hover {
    text-decoration: underline;
}

.icon {
    width: 24px;
    height: 24px;
    margin-right: 10px; /* Space between icon and text */
    vertical-align: middle;
}

button, .btn {
    background-color: #4a90e2;  /* Primary blue for buttons */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

button:hover, .btn:hover {
    background-color: #1c3a63;  /* Darker blue on hover */
}

.secondary-btn {
    background-color: #4cae90;  /* Soft green/teal for secondary actions */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.secondary-btn:hover {
    background-color: #38876b;  /* Darker teal on hover */
}

footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
    color: #888;  /* Soft gray for footer */
}

/* Media query to adjust for mobile devices */
@media (max-width: 600px) {
    header h1 {
        font-size: 2.2rem;
    }

    button, .btn, .secondary-btn {
        width: 100%;
        font-size: 1.1rem;
    }
}
