/* Base Reset & Common Styles (Mimicking some browser defaults/Bootstrap's reset) */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Mona Sans';
    src: url('../fonts/MonaSans-Regular.woff2') format('woff2 supports variations'),
        url('../fonts/Mona-Sans-Regular.ttf') format('truetype');
    /* Added .ttf version */
    font-weight: 200 900;
    font-stretch: 75% 125%;
    font-display: swap;
}

body {
    font-family: 'Mona Sans';
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.custom-container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Custom Button Styles (Replacing .btn, .btn-primary, .btn-outline-secondary) */
.custom-button {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 10px 25px;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    cursor: pointer;
}

/* New button style for light blue filled */
.custom-button-blue-filled {
    color: #fff;
    background-color: black;
    border-color: black;
}

.custom-button-blue-filled:hover {
    color: #fff;
    background-color: #ffa31a;
    border-color: #ffa31a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* New button style for white bordered */
.custom-button-white-bordered {
    color: #333;
    background-color: #fff;
    border-color: #f1eeee;
    font-weight: bold;
}

.custom-button-white-bordered:hover {
    color: #333;
    background-color: #f8f8f8;
    border-color: #bbb;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}


/* Custom Card Styles (Replacing .card, .p-3, .border, .rounded) */
.custom-card {
    border: 1px solid #f5f5f5;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    background-color: #f5f5f5;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.custom-card:hover {}

/* Custom Alert/Message Box (Replacing .alert, .alert-success, .alert-danger, .alert-info) */
.custom-message-box {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInSlideUp 0.5s ease-out forwards;
}

@keyframes fadeInSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-message-box.success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.custom-message-box.error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.custom-message-box.info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

/* List Reset (Replacing .list-unstyled) */
.custom-list-unstyled {
    list-style: none;
    padding-left: 0;
}

/* Badge (Replacing .badge, .badge-info, .badge-warning) */
.custom-badge {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
}

.custom-badge-info {
    color: #fff;
    background-color: #17a2b8;
}

.custom-badge-warning {
    color: #212529;
    background-color: #ffc107;
}


/* Form Grouping (Replacing .form-group) */
.custom-form-group {
    margin-bottom: 1rem;
}

.custom-form-group label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.custom-form-group input[type="text"],
.custom-form-group input[type="email"],
.custom-form-group input[type="password"],
.custom-form-group input[type="url"],
.custom-form-group input[type="tel"],
.custom-form-group textarea {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.custom-form-group input[type="file"] {
    display: block;
    padding-top: 0.375rem;
}

.custom-form-group input:focus,
.custom-form-group textarea:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Modal Specific Styles (Replacing .modal, .modal-dialog, etc.) */
.custom-modal-fade {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
}

.custom-modal-fade.show {
    opacity: 1;
    display: block;
}

.custom-modal-dialog {
    position: relative;
    width: auto;
    margin: 1.75rem auto;
    pointer-events: none;
    max-width: 500px;
    transform: translateY(-50px);
    transition: transform 0.3s ease-out;
}

.custom-modal-fade.show .custom-modal-dialog {
    transform: translateY(0);
}

.custom-modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
}

.custom-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
}

.custom-modal-title {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 1.25rem;
}

.custom-modal-close-button {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto;
    background-color: transparent;
    border: 0;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
    cursor: pointer;
}

.custom-modal-close-button:hover {
    opacity: .75;
}

.custom-modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
}

.custom-flex-row {
    display: flex;
    flex-wrap: wrap;
}

.custom-flex-col-half {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 15px;
    padding-right: 15px;
}

.custom-flex-col-two-thirds {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding-left: 15px;
    padding-right: 15px;
}

.custom-flex-col-one-third {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding-left: 15px;
    padding-right: 15px;
}

/* Utility classes (Replacing .mt-*, .mb-*, .p-*, .text-center, .img-fluid) */
.custom-margin-top-5 {
    margin-top: 1rem !important;
}

.custom-margin-top-4 {
    margin-top: 1.5rem !important;
}

.custom-margin-bottom-10 {
    margin-bottom: 10px !important;
}

.custom-margin-bottom-20 {
    margin-bottom: 20px !important;
}

.custom-padding-3 {
    padding: 1rem !important;
}

.custom-text-center {
    text-align: center !important;
}

.custom-image-fluid {
    max-width: 100%;
    height: auto !important;
}

.custom-bg-light {
    background-color: #f8f9fa !important;
}

.custom-padding-y-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.custom-padding-y-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}


/* Vendor Profile Page General */
.vendor-profile-page {
    padding-top: 30px;
    padding-bottom: 50px;
}

/* Vendor Hero Section */
.vendor-hero-section {
    background-color: #fff;
    overflow: hidden;
}

.vendor-info-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 30px;
}

.vendor-logo-large {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.vendor-logo-large:hover {
    transform: scale(1.05);
}

.vendor-name {
    /* Responsive font size using clamp() */
    font-size: clamp(1.8em, 5vw, 2.5em);
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    animation: slideInLeft 0.8s ease-out forwards;
    opacity: 0;
}

.vendor-about-short {
    color: #666;
    font-size: 1.1em;
    margin-bottom: 25px;
    max-width: 600px;
    animation: slideInLeft 1s ease-out forwards;
    opacity: 0;
}

/* Keyframes for sliding animation */
@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}


.vendor-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    animation: fadeIn 1.2s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


.vendor-actions .custom-button {
    margin: 0;
    min-width: 150px;
}

.vendor-featured-image-right {
    text-align: center;
    padding-top: 30px;
}

.vendor-featured-img {
    max-height: 450px;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    animation: fadeInScale 1s ease-out forwards;
    opacity: 0;
    transform: scale(0.95);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* Tabs Section */
.vendor-tabs-section .custom-tab-nav {
    display: flex;
    border-bottom: none;
    list-style: none;
    padding-left: 0;
    gap: 10px;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.vendor-tabs-section .custom-tab-nav-item {
    margin-bottom: 0;
}

.vendor-tabs-section .custom-tab-nav-link {
    display: block;
    padding: 10px 25px;
    color: #6c757d;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    background-color: transparent;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vendor-tabs-section .custom-tab-nav-link.active {
    color: #333;
    border-color: #F8F7F4;
    background-color: #F8F7F4;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.vendor-tabs-section .custom-tab-nav-link:not(.active) {
    color: #6c757d;
    background-color: transparent;
    border-color: transparent;
    padding: 10px 15px;
    box-shadow: none;
    transform: none;
}

.vendor-tabs-section .custom-tab-nav-link:hover:not(.active) {
    color: #333;
}

.vendor-tabs-section .custom-tab-content {
    padding-top: 20px;
    transition: opacity 0.5s ease-in-out;
}

.custom-tab-pane {
    display: none;
    opacity: 0;
    transform: translateY(10px);
}

.custom-tab-pane.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* About Tab Specifics */
.about-column-left h3,
.about-column-right h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
}

.capabilities-tags {
    display: flex;
    /* Added flexbox for better tag wrapping */
    flex-wrap: wrap;
    /* Allow tags to wrap */
    gap: 8px;
    /* Space between tags */
}

.capabilities-tags .custom-badge {
    display: inline-flex;
    align-items: center;
    background: #F3F3F4;
    border: 3px solid #f1f1f1;
    border-radius: 8px;
    color: #3d3d4e !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #b8b8b8;
    font-weight: bold;
    text-transform: lowercase;
    /* Removed margin-right/bottom, replaced by gap on parent */
}

.capabilities-tags .custom-badge:hover {
    transform: translateY(-2px);
    background-color: #e0e0e0;
    border-color: #e0e0e0;
    color: #333;
}

/* UPDATED ELITE MEMBER CARD STYLES */
.elite-member-card {
    font-family: "Mona Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: #f5f5f5;
    border: 1px solid #f5f5f5;
    color: #000000;
    font-size: 0.95em;
    display: flex;
    align-items: center;
    padding: 30px;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.elite-member-card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.elite-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.elite-member-card h5.elite-title {
    margin-bottom: 0;
    font-size: 1.1em;
    color: black;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1.3;
}

.elite-member-card p.elite-description {
    margin-top: 5px;
    margin-bottom: 0;
    line-height: 1.4;
}

.elite-member-card .custom-badge {
    background-color: #ffa31a;
    color: #fff;
    font-weight: 700;
    padding: 0.5em 1.2em;
    border-radius: 20px;
    white-space: nowrap;
}

.elite-member-card a {
    color: black;
    text-decoration: underline;
}

/* Right Column Cards (details-card, media-kits-card, social-card already using .custom-card) */
.social-links li {
    margin-bottom: 8px;
}

.social-links a {
    color: #ffa31a;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
}

.social-links a:hover {
    color: #ffa31a;
    transform: translateX(5px);
}

.social-links .social-icon {
    width: 20px;
    text-align: center;
    margin-right: 5px;
}

/* Product Card - from product_card.php, but ensure it's in style.css */
.listing-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.listing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.listing-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.listing-content {
    padding: 15px;
}

.vendor-listing-logo {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #eee;
    margin-right: 8px;
}

.listing-vendor-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9em;
    color: #666;
}

.listing-title a {
    color: #333;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.listing-title a:hover {
    color: #ffa31a;
}

.listing-price {
    font-size: 1.2em;
    font-weight: bold;
    color: #28a745;
    margin-top: 10px;
}

/* Product Grid - FORCE column count to match homepage, do not stretch cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Existing .details-card p styling should already be there from previous step */

.details-card p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #555;
    font-size: 0.95em;
}

/* Elite Pro Badge Styling */
.elite-pro-badge {
    background-color: #333;
    color: #fff;
    font-size: 0.75em;
    font-weight: bold;
    padding: 3px 6px;
    border-radius: 4px;
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}

.details-card p strong:has(+ .elite-pro-badge) {
    display: flex;
    align-items: center;
}

.details-card p strong:has(+ .elite-pro-badge)::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f005";
    color: #ffd700;
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

/* Icon styling for image icons */
.details-card .icon,
.social-links .icon,
.media-kits-card .icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    vertical-align: middle;
    flex-shrink: 0;
}

/* Elite Pro Badge Styling */
.elite-pro-badge {
    background-color: #222;
    color: #ffffff;
    font-size: 0.7em;
    font-weight: 600;
    padding: 4px 6px;
    border-radius: 6px;
    margin-right: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Media Kits Card Specifics - Adjusted to match image */
.media-kits-card .custom-list-unstyled {
    list-style: none;
    padding: 0;
    margin: 0;
}

.media-kits-card .custom-list-unstyled li {
    margin-bottom: 10px;
}

.media-kits-card .custom-list-unstyled li a {
    color: #ffa31a;
    /* Blue for links */
    text-decoration: none;
    font-size: 0.95em;
    display: flex;
    /* Use flex to align icon and text */
    align-items: center;
    /* Vertically center icon and text */
    padding: 2px 0;
    /* Add a little padding for better click area */
}


.media-kits-card .custom-list-unstyled li a:hover {
    text-decoration: underline;
}

/* Social Card Specifics */
.social-card .custom-list-unstyled {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-card .custom-list-unstyled li {
    margin-bottom: 10px;
}

.social-card .custom-list-unstyled li a {
    color: #000;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 0.95em;
}

.social-card .custom-list-unstyled li a:hover {
    text-decoration: underline;
}

/* Sidebar Layout */
.vendor-profile-page .custom-flex-col-one-third {
    flex: 1;
    min-width: 300px;
}

.custom-card h5 {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

/* Details Card Specifics */
.details-card p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #555;
    font-size: 0.95em;
}

.details-card p:last-child {
    margin-bottom: 0;
}

/* Icon styling for images within Details Card and Social Links */
.details-card p .icon,
.social-links .icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    vertical-align: middle;
    flex-shrink: 0;
}

.elite-tick-icon {
    width: 30px;
    height: 30px;
    vertical-align: middle;
    margin-left: 6px;
}

/* Responsive Adjustments */

/* Mobile devices (portrait and landscape) and smaller tablets */
@media (max-width: 767.98px) {
    .custom-container {
        width: 95%;
        /* Make it wider on small screens for better use of space */
        padding: 15px;
        /* Adjust padding for smaller screens */
    }

    .custom-flex-row {
        flex-direction: column;
    }

    .custom-flex-col-half,
    .custom-flex-col-two-thirds,
    .custom-flex-col-one-third {
        flex: 0 0 100%;
        /* Stacks columns on smaller screens */
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .vendor-info-left,
    .vendor-featured-image-right {
        margin-bottom: 30px;
        align-items: center;
        /* Center on small screens */
    }

    .vendor-logo-large {
        margin-bottom: 15px;
    }

    .vendor-name,
    .vendor-about-short {
        text-align: center;
        /* Center text on small screens */
    }

    .vendor-actions {
        flex-direction: column;
        /* Stack buttons vertically on small screens */
        align-items: center;
    }

    .vendor-featured-img {
        max-height: 250px;
    }

    .vendor-name {
        font-size: 2em;
        /* Smaller font size for mobile */
    }

    .about-column-left,
    .about-column-right {
        margin-bottom: 30px;
    }

    .vendor-tabs-section .custom-tab-nav {
        flex-direction: column;
        /* Stack tabs vertically on small screens */
        align-items: flex-start;
        /* Align tabs to the left on small screens */
    }

    .custom-tab-nav-link {
        text-align: left;
        /* Align text within tab link to the left */
        border-bottom: 1px solid #dee2e6;
        /* Add separator */
        width: 100%;
        /* Make tab links take full width */
    }

    .vendor-tabs-section .custom-tab-nav-link:not(.active) {
        padding: 10px;
        /* Adjust padding for text-only on mobile */
    }

    /* Product Grid Adjustments for smaller screens */
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        /* Slightly smaller min-width for mobile */
        gap: 15px;
    }

    /* Adjust padding for modals on small screens */
    .custom-modal-dialog {
        margin: 1rem;
        /* Smaller margin on mobile */
        max-width: calc(100% - 2rem);
        /* Ensure modal doesn't overflow viewport */
    }
}

/* Tablets (portrait) - additional refinements if needed, building on mobile styles */
@media (min-width: 768px) and (max-width: 1024px) {
    .custom-container {
        width: 90%;
        padding: 25px;
    }

    .custom-flex-col-half {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .custom-flex-col-two-thirds {
        flex: 0 0 60%;
        /* Adjust for slightly different tablet layout */
        max-width: 60%;
    }

    .custom-flex-col-one-third {
        flex: 0 0 40%;
        /* Adjust for slightly different tablet layout */
        max-width: 40%;
        min-width: unset;
        /* Remove fixed min-width for flexibility */
    }

    .vendor-name {
        font-size: clamp(2em, 4vw, 2.3em);
        /* Slightly larger on tablets */
    }

    .vendor-featured-img {
        max-height: 350px;
    }

    .vendor-tabs-section .custom-tab-nav {
        flex-direction: row;
        /* Keep tabs horizontal on tablets */
        justify-content: flex-start;
        gap: 15px;
    }

    .custom-tab-nav-link {
        width: auto;
        /* Allow tabs to size naturally */
        border-bottom: none;
        /* Remove separator */
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
}

/* Laptops and Desktops - Larger screens */
@media (min-width: 1025px) {
    .custom-container {
        padding: 30px;
        /* More padding for larger screens */
    }

    .vendor-name {
        font-size: 2.5em;
        /* Default large font size */
    }

    .vendor-info-left {
        padding-bottom: 40px;
    }

    .vendor-featured-image-right {
        padding-top: 40px;
    }

    .vendor-featured-img {
        max-height: 450px;
    }

    .custom-flex-col-two-thirds {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .custom-flex-col-one-third {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
        min-width: 300px;
        /* Maintain minimum width for sidebar on large screens */
    }
}

.about-column-left p {
    line-height: 1.4;
    /* You can adjust this value (e.g., 1.2, 1.5) to fine-tune the spacing */
    margin-bottom: 20px;
    /* Add some margin below the paragraph to separate it from the next section */
}

.pill,
.login-btn {
    padding: 18px 14px !important;
}