    body {
        margin: 0;
        font-family: 'Montserrat', sans-serif;
        background-color: #f8f9fa;
    }

    /* Navbar Styling */
    nav {
        background-color: #fff;
        border-bottom: 1px solid #ddd;
    }

    .navbar-brand img {
        max-height: 75px;
    }

    /* Navbar links: Default state */
    .navbar-nav .nav-link {
        color: #343a40 !important;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    /* Navbar links: Hover state */
    .navbar-nav .nav-link:hover {
        color: #000 !important;
    }

    /* Navbar links: Active state */
    .navbar-nav .nav-link.active {
        color: #000 !important;
    }

    /* Hero Section */
    .hero {
        position: relative;
        background: url('hero-image.jpg') no-repeat center center/cover;
        height: 75vh;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        text-align: center;
        flex-direction: column;
    }

    .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: 1;
    }

    .hero h1 {
        position: relative;
        z-index: 2;
        font-family: 'Montserrat', sans-serif;
        font-size: 2.5rem;
        font-weight: 700;
        margin: 0;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .hero p {
        position: relative;
        z-index: 2;
        font-family: 'Montserrat', sans-serif;
        font-size: 1.5rem;
        font-weight: 300;
        letter-spacing: 3px;
        margin-top: 0.5rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        text-transform: lowercase;
    }

    /* General Link Styling */
    a {
        color: #343a40;
        text-decoration: none;
        transition: color 0.3s;
    }

    a:hover {
        color: #000;
    }

    /* Footer Links */
    footer a {
        color: #fff;
        text-decoration: none;
    }

    footer a:hover {
        color: #ddd;
    }

    /* Cards */
    .card {
        border: 1px solid #ddd;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .card:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }
/* Flexbox alignment for "About Me" section */
#about .d-flex {
    gap: 20px; /* Space between the profile photo and text */
}

/* Profile Photo */
.profile-photo {
    width: 150px; /* Fixed width */
    height: 150px; /* Same height to make it circular */
    border: 5px solid #f8f9fa; /* Optional border */
    border-radius: 50%; /* Circular shape */
    object-fit: cover; /* Ensure the photo fills the circle */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    flex-shrink: 0; /* Prevent the photo from resizing in the flex container */
}

/* Text container alignment */
.text-container {
    flex-grow: 1; /* Allow the text to take up remaining space */
}

/* Guild Logo Styling */
.guild-logo {
    max-height: 75px;
    margin-top: 1rem;
    display: inline-block;
}