* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
    color: #333;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 800px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 71, 171, 0.08);
    padding: 40px;
    margin: 30px auto;
}

/* Profile Section Styling */
.profile-section {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eaeaea;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #0047AB;
}

.profile-section h1 {
    font-size: 2.8rem;
    color: #0047AB;
    margin-bottom: 10px;
    font-weight: 600;
}

.tagline {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

.description {
    font-size: 1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* Links List Styling */
.links-list {
    list-style-type: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.link-item {
    margin-bottom: 16px;
}

.link-button {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 18px 24px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.link-button:hover {
    transform: translateY(-4px);
    border-color: #0047AB;
    box-shadow: 0 8px 15px rgba(0, 71, 171, 0.12);
    background-color: #f8fbff;
}

.link-icon {
    font-size: 1.4rem;
    color: #0047AB;
    margin-right: 18px;
    width: 30px;
    text-align: center;
}

.link-text {
    flex-grow: 1;
    font-size: 1.05rem;
    font-weight: 500;
    text-align: left;
}

.link-arrow {
    color: #888;
    font-size: 1rem;
}

/* Footer Styling */
.page-footer {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #eaeaea;
    color: #777;
    font-size: 0.9rem;
}

.footer-note {
    font-size: 0.85rem;
    margin-top: 5px;
    color: #999;
}

/* Responsive Design using CSS Media Queries[citation:3] */
@media only screen and (max-width: 650px) {
    .container {
        padding: 25px;
        margin: 15px auto;
    }

    .profile-section h1 {
        font-size: 2.2rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .description {
        font-size: 0.95rem;
    }

    .link-button {
        padding: 16px 20px;
    }

    .link-text {
        font-size: 1rem;
    }
}

/* Optional: Color variations based on link type */
.link-button[data-link-type="website"]:hover .link-icon {
    color: #1a6bb3;
}

.link-button[data-link-type="resources"]:hover .link-icon {
    color: #28a745;
}

.link-button[data-link-type="event"]:hover .link-icon {
    color: #dc3545;
}

/* Add these styles to your existing style.css file */

.logo-container {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.logo {
    width: 180px;
    /* Increased from 100px for better visibility */
    height: 180px;
    /* Increased from 100px */
    border-radius: 50%;
    object-fit: contain;
    /* Changed from 'cover' to 'contain' to show full logo */
    border: 4px solid #0047AB;
    background-color: white;
    /* White background for better contrast */
    padding: 5px;
    /* Small padding around logo */
    box-shadow: 0 4px 12px rgba(0, 71, 171, 0.15);
}

/* For text-based logo (alternative if you don't have image file) */
.text-logo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0047AB 0%, #1a6bb3 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 4px solid #0047AB;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    padding: 15px;
    margin: 0 auto;
}

.text-logo .line1 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.text-logo .line2 {
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.text-logo .line3 {
    font-size: 0.7rem;
}