* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background:
    radial-gradient(
        1200px at 18% 28%, /* drifting left/up */
        rgba(255, 0, 140, 0.4),
        rgba(90, 0, 160, 0.30),
        rgba(30, 0, 50, 0.9) 70%
    ),
    radial-gradient(
        900px at 82% 63%, /* drifting right/down */
        rgba(130, 0, 255, 0.45),
        rgba(0, 0, 0, 0.95)
    ),
    linear-gradient(135deg, rgba(10,0,25,1), rgba(0,0,0,1));
}

/* Header Styles - Transparent and Overlayed */
.header {
    background-color: transparent;
    padding: 25px 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.header.scrolled {
    background-color: rgba(64, 72, 84, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    padding: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
}
.navbar-brand h1{
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0px;
    font-size: 26px;
    font-family: "Poppins";
}
.navbar-brand img{
    height: 80px;
    width: 100%;
    
}
.logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #4DBBDB, #3BABB0);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 22px;
    box-shadow: 0 3px 10px rgba(77, 187, 219, 0.3);
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 400;
    color: white;
    letter-spacing: 0.5px;
}

.navbar-toggler {
    border: none;
    padding: 5px 10px;
    background-color: rgb(201, 60, 143);
    border-radius: 5px;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-collapse {
    background-color: rgb(201, 60, 143);
    backdrop-filter: blur(10px);
    margin-top: 15px;
    border-radius: 10px;
    padding: 15px;
    
}

@media (min-width: 992px) {
    .navbar-collapse {
        background-color: transparent;
        margin-top: 0;
        padding: 0;
    }
}

.navbar-nav {
    align-items: center;
    gap: 10px;
}

.nav-link {
    color: #fff !important;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
    padding: 10px 15px !important;
    transition: all 0.3s;
    border-radius: 5px;
}

.nav-link:hover {
 
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-signup {
    background: rgba(255, 255, 255, 0.2); /* translucent glass effect */
    color: #fff !important;
    padding: 16px 28px;
    border-radius: 8px;
    font-weight: 500;
    min-width:120px;
    text-align: center;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.25s ease;
}

/* Hover effect similar to the design */
.btn-signup:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.25);
}
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 160px 20px 100px;
    background-repeat: no-repeat;
    background-size: cover;

    animation: heroGlow 24s ease-in-out infinite;
}

/* PROPER AI LANDING PAGE GRADIENT ANIMATION */
@keyframes heroGlow {
    0% {
        background:
            radial-gradient(
                1200px at 22% 32%,
                rgba(255, 0, 140, 0.55),
                rgba(90, 0, 160, 0.45),
                rgba(30, 0, 50, 0.9) 70%
            ),
            radial-gradient(
                900px at 78% 58%,
                rgba(130, 0, 255, 0.45),
                rgba(0, 0, 0, 0.95)
            ),
            linear-gradient(135deg, rgba(10,0,25,1), rgba(0,0,0,1));
    }

    33% {
        background:
            radial-gradient(
                1200px at 24% 35%, /* subtle movement */
                rgba(255, 0, 140, 0.55),
                rgba(90, 0, 160, 0.45),
                rgba(30, 0, 50, 0.9) 70%
            ),
            radial-gradient(
                900px at 75% 55%, /* visible but smooth drift */
                rgba(130, 0, 255, 0.45),
                rgba(0, 0, 0, 0.95)
            ),
            linear-gradient(135deg, rgba(10,0,25,1), rgba(0,0,0,1));
    }

    66% {
        background:
            radial-gradient(
                1200px at 18% 28%, /* drifting left/up */
                rgba(255, 0, 140, 0.55),
                rgba(90, 0, 160, 0.45),
                rgba(30, 0, 50, 0.9) 70%
            ),
            radial-gradient(
                900px at 82% 63%, /* drifting right/down */
                rgba(130, 0, 255, 0.45),
                rgba(0, 0, 0, 0.95)
            ),
            linear-gradient(135deg, rgba(10,0,25,1), rgba(0,0,0,1));
    }

    100% {
        background:
            radial-gradient(
                1200px at 22% 32%, /* return smoothly with NO POP */
                rgba(255, 0, 140, 0.55),
                rgba(90, 0, 160, 0.45),
                rgba(30, 0, 50, 0.9) 70%
            ),
            radial-gradient(
                900px at 78% 58%,
                rgba(130, 0, 255, 0.45),
                rgba(0, 0, 0, 0.95)
            ),
            linear-gradient(135deg, rgba(10,0,25,1), rgba(0,0,0,1));
    }
}

/* Grain overlay unchanged */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.12;
    pointer-events: none;
}

.hero > * {
    position: relative;
    z-index: 2;
}


.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 45px;
    line-height: 1.3;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title .highlight {
    color: #fff;
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
    margin-bottom: 55px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn-browse {
    background-color: rgb(201, 60, 143);
    color: white;
    padding: 18px 50px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    border: none;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.btn-browse:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);

}

.btn-sell {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 3px solid #fff;
    padding: 18px 50px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    /* border: none; */
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}



.divider {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin: 0 10px;
}

.search-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.search-box {
    width: 100%;
    padding: 20px 65px 20px 28px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    background-color: rgba(94, 103, 116, 0.7);
    box-shadow: 0 0 0 3px rgba(77, 187, 219, 0.3);
    color: white;
    font-family: 'Inter', sans-serif;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.search-box::placeholder {
    color: #A8B0BA;
}

.search-box:focus {
    outline: none;
    background-color: rgba(94, 103, 116, 0.7);
    box-shadow: 0 0 0 3px rgba(77, 187, 219, 0.3);
}

.search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.search-btn:hover {
    background-color: #4DBBDB;
}

.search-btn i {
    font-size: 20px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .header {
        padding: 20px 0;
    }

    .hero {
        padding: 120px 20px 60px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 18px 0;
    }

    .logo-text {
        font-size: 22px;
    }

    .logo-icon {
        width: 34px;
        height: 34px;
        font-size: 20px;
    }

    .hero {
        padding: 110px 20px 50px;
        min-height: 100vh;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .btn-browse, .btn-sell {
        padding: 16px 40px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
    }

    .hero-buttons {
        gap: 15px;
        margin-bottom: 40px;
    }

    .divider {
        display: none;
    }

    .search-box {
        padding: 18px 60px 18px 22px;
        font-size: 15px;
    }

    .search-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .header {
        padding: 15px 0;
    }

    .logo-text {
        font-size: 20px;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .hero {
        padding: 100px 15px 40px;
    }

    .hero-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .btn-browse, .btn-sell {
        padding: 14px 35px;
        font-size: 13px;
        width: 100%;
        max-width: 260px;
    }

    .search-box {
        padding: 16px 55px 16px 20px;
        font-size: 14px;
    }

    .search-btn {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 22px;
    }

    .hero-subtitle {
        font-size: 14px;
    }
}

/* Products Section */
.products-section {
    
    padding: 60px 0 80px;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
    flex-wrap: wrap;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    letter-spacing: 0.5px;
}

.search-box-top {
    position: relative;
    width: 450px;
    max-width: 100%;
}

.search-input-top {
    width: 100%;
    padding: 12px 50px 12px 20px;
  
    border-radius: 30px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.3s;
}

.search-input-top:focus {
    box-shadow: 0 0 0 3px rgba(77, 187, 219, 0.2);
}

.search-icon-top {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #7E8892;
}

.search-icon-top i {
    font-size: 20px;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    border-bottom: 2px solid #E0E0E0;
    padding-bottom: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-tab {
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    padding: 10px 0;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    position: relative;
}

.filter-tab:hover {
    color: rgb(201, 60, 143);
}

.filter-tab.active {
    color: rgb(201, 60, 143);
}

.filter-tab.active::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: rgb(201, 60, 143);
}

.filter-btn-show {
    margin-left: auto;
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    white-space: nowrap;
}

.filter-btn-show:hover {
    color: #fff;
}

/* Advanced Filters Panel */
.filters-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, margin-bottom 0.4s ease-out;
    margin-bottom: 0;
}

.filters-panel.show {
    max-height: 600px;
    margin-bottom: 30px;
}

.filters-content {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.filter-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #2C3E50;
    margin: 0;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #555;
    transition: color 0.3s;
}

.filter-checkbox:hover {
    color: #2C3E50;
}

.filter-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: rgb(201, 60, 143);
}

.price-inputs {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0px;
}

.price-input {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid #E0E0E0;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.3s;
}

.price-input:focus {
    border-color: #4DBBDB;
}

.price-separator {
    color: #999;
    font-weight: 600;
}

.filter-actions {
    grid-column: 1 / -1;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 10px;
}

.btn-clear-filters,
.btn-apply-filters {
    padding: 12px 30px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-clear-filters {
    background-color: #F5F5F5;
    color: #666;
}

.btn-clear-filters:hover {
    background-color: #E0E0E0;
    color: #333;
}

.btn-apply-filters {
    background-color: rgb(201, 60, 143);
    color: white;
}



/* Product Card Hidden State */
.product-card.hidden {
    display: none;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.product-card {
    background: rgb(31, 5, 69);
    border-radius: 8px;
    border: 2px solid rgba(90, 0, 160, 0.30);
    overflow: hidden;
    
    transition: all 0.3s;
    cursor: pointer;
}

.product-card:hover {
    /* transform: translateY(-5px); */
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.product-image {
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
    background-color: #E8EAED;
}

.product-image img {
    width: 100%;
    height: 100%;
   
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #FF4D6D;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    z-index: 2;
}

.play-btn {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2;
    color: #2C3E50;
}

.play-btn:hover {
    background-color:    rgb(201, 60, 143);
   color: #fff;
    transform: scale(1.1);
}

.play-btn i {
    font-size: 20px;
    margin-left: 2px;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 5px 0;
    line-height: 1.4;
}

.product-author {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #fff;
    margin: 0 0 0px 0;
}

.author-link {
    color: rgb(201, 60, 143);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.author-link:hover {
    color: #fff;
    text-decoration: underline;
}

.category {
    color: #fff;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.rating-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.star {
    color: #E0E0E0;
    font-size: 22px;
}

.star.filled {
    color: #FFC107;
}

.rating-count {
    font-size: 13px;
    color: #fff;
    margin-left: 8px;
    font-family: 'Inter', sans-serif;
}

.comments {
    font-size: 13px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 5px;
}

.comments i {
    font-size: 16px;
}

.pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
}

.old-price {
    font-size: 13px;
    color: rgb(201, 60, 143);
  
    text-decoration: line-through;
    font-family: 'Inter', sans-serif;
}

.new-price {
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

/* Responsive for Products Section */
@media (max-width: 991px) {
    .products-section {
        padding: 50px 0 70px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }

    .section-title {
        font-size: 24px;
    }

    .filters-content {
        grid-template-columns: 1fr;
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 40px 0 60px;
    }

    .products-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-box-top {
        width: 100%;
    }

    .section-title {
        font-size: 22px;
    }

    .filter-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 15px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .filter-tabs::-webkit-scrollbar {
        height: 6px;
    }

    .filter-tabs::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .filter-tabs::-webkit-scrollbar-thumb {
        background: #4DBBDB;
        border-radius: 10px;
    }

    .filter-tab {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .filter-btn-show {
        margin-left: 0;
        flex-shrink: 0;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .product-image {
        height: 300px;
    }

    .filters-content {
        padding: 20px;
    }

    .filter-actions {
        flex-direction: column;
    }

    .btn-clear-filters,
    .btn-apply-filters {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .products-section {
        padding: 30px 0 50px;
    }

    .section-title {
        font-size: 20px;
    }

    .search-input-top {
        padding: 10px 45px 10px 18px;
        font-size: 14px;
    }

    .product-title {
        font-size: 16px;
    }

    .product-image {
        height: 260px;
    }

    .product-info {
        padding: 16px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .filters-panel.show {
        max-height: 800px;
    }
}

@media (max-width: 400px) {
    .product-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .pricing {
        align-items: flex-start;
    }

    .filter-tab {
        font-size: 13px;
        padding: 8px 0;
    }
}


.dual_opportunity_cards_wrapper_section {
    padding: 60px 0 80px;
}

.dual_opportunity_cards_container_grid {
display: flex;
justify-content: center;
gap: 30px;
flex-wrap: wrap;
align-items: center;
}

.individual_opportunity_card_component {
    background:
    /* Soft magenta–violet atmospheric glow */
    radial-gradient(
        1200px at 18% 28%,
        rgba(212, 80, 150, 0.25),
        rgba(120, 60, 180, 0.22),
        rgba(25, 10, 40, 0.85) 70%
    ),

    /* Subtle violet–ink mood lighting */
    radial-gradient(
        900px at 82% 63%,
        rgba(150, 90, 240, 0.28),
        rgba(10, 5, 20, 0.92)
    ),

    /* Clean cinematic base gradient */
    linear-gradient(
        135deg,
        rgb(12, 10, 25),
        rgb(5, 5, 10)
    );

    
    border-radius: 12px;
 
    padding: 50px 40px;
   
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}



.individual_opportunity_card_component:hover::before {
    transform: scaleX(1);
}

.individual_opportunity_card_component:hover {

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.opportunity_card_visual_icon_container {
    width: auto;
    height: 120px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  
    position: relative;
}
.opportunity_card_visual_icon_container img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.opportunity_card_visual_icon_container i {
    font-size: 50px;
    color: #ffffff;
    z-index: 2;
}

.opportunity_card_visual_icon_container::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    animation: pulse_animation_effect 2s infinite;
}

@keyframes pulse_animation_effect {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.15);
        opacity: 0;
    }
}

.opportunity_card_primary_heading_title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.opportunity_card_descriptive_subtitle_text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    margin-bottom: 35px;
    line-height: 1.6;
}

.opportunity_benefits_checklist_container {
    list-style: none;
    margin-bottom: 40px;
}

.individual_benefit_checklist_item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.benefit_checkmark_icon_wrapper {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Seller: Green */
.seller_card_checkmark_style {
    background:rgb(201, 60, 143); /* soft green */
}

.seller_card_checkmark_style i {
    color: #fff; /* solid green */
    font-size: 16px;
}

/* Partner: Light Blue */
.partner_card_checkmark_style {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #fff; /* soft light blue */
}

.partner_card_checkmark_style i {
    color: #fff; /* solid light blue */
    font-size: 16px;
}

/* Benefit wrapper (icon size only, color inherited by card type) */
.benefit_checkmark_icon_wrapper i {
    font-size: 16px;
}


.individual_benefit_description_text {
    font-size: 15px;
    color: #fff;
    line-height: 1.6;
    font-weight: 400;
}

.opportunity_action_button_element {
    width: 100%;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.seller_action_button_gradient {
    background: rgb(201, 60, 143);
}

.partner_action_button_gradient {
    background:rgba(255, 255, 255, 0.2);
    border: 2px solid #fff;
}

.opportunity_action_button_element:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.opportunity_action_button_element:active {
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .dual_opportunity_cards_container_grid {
       padding: 0 20px;
    }

    .individual_opportunity_card_component {
        padding: 40px 30px;
    }

    .opportunity_card_primary_heading_title {
        font-size: 24px;
    }

    .opportunity_card_descriptive_subtitle_text {
        font-size: 14px;
    }

    .opportunity_card_visual_icon_container {
        width: 100px;
        height: 100px;
    }

    .opportunity_card_visual_icon_container i {
        font-size: 42px;
    }
}

@media (max-width: 480px) {
    .individual_opportunity_card_component {
        padding: 30px 20px;
    }

    .opportunity_card_primary_heading_title {
        font-size: 22px;
    }

    .individual_benefit_description_text {
        font-size: 14px;
    }

    .opportunity_action_button_element {
        padding: 14px 28px;
        font-size: 15px;
    }
}



.art_resources_headline_title_container {

    margin-bottom: 50px;
}

.art_resources_primary_heading_text {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    letter-spacing: 0.5px;
}

.art_resources_highlighted_bold_text {
    font-weight: 700;
    color: #fff;
}



.individual_art_category_card_item {
    margin-bottom: 0px;
    height: 220px;
}

.art_category_clickable_card_element {
    position: relative;
    height: 220px;

    overflow: hidden;
    cursor: pointer;
  text-decoration: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.art_category_background_image_layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
    filter: brightness(0.7);
}

.art_category_overlay_gradient_layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    transition: all 0.5s ease;
}



.art_category_clickable_card_element:hover .art_category_overlay_gradient_layer {
    background:rgba(255, 255, 255, 0.15);
}

.art_category_content_display_wrapper {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 20px;
}

.art_category_icon_container_element {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.art_category_clickable_card_element:hover .art_category_icon_container_element {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1) rotate(5deg);
}

.art_category_icon_container_element i {
    font-size: 36px;
    color: #ffffff;
}

.art_category_title_text_label {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    text-transform: capitalize;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
/* Illustrations */
.illustrations_background_style {
    background-image: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=800&q=80');
}

/* 2D Images */
.two_d_images_background_style {
    background-image: url('https://images.unsplash.com/photo-1752352324676-2355e54927eb?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
}

/* 3D Images */
.three_d_images_background_style {
    background-image: url('https://images.unsplash.com/photo-1517694712202-14dd9538aa97?w=800&q=80');
}

/* Templates */
.templates_background_style {
    background-image: url('https://images.unsplash.com/photo-1530435460869-d13625c69bbf?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
}

/* Graphics */
.graphics_background_style {
    background-image: url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=800&q=80');
}

/* Icons */
.icons_background_style {
    background-image: url('https://images.unsplash.com/photo-1587614382346-4ec70e388b28?w=800&q=80');
}

/* Mockups */
.mockups_background_style {
    background-image: url('https://images.unsplash.com/photo-1558655146-9f40138edfeb?w=800&q=80');
}

/* Fonts */
.fonts_background_style {
    background-image: url('https://images.unsplash.com/photo-1513542789411-b6a5d4f31634?w=800&q=80');
}

/* Browse All */
.browse_all_background_style {
    background-image: url('https://images.unsplash.com/photo-1522199710521-72d69614c702?w=800&q=80');
}

/* Shared Card Background Behavior */
.art_category_background_image_layer {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* Responsive Design */
@media (max-width: 991px) {
    .art_resources_primary_heading_text {
        font-size: 30px;
    }

    .art_category_clickable_card_element {
        height: 200px;
    }
}

@media (max-width: 767px) {
    .art_resources_primary_heading_text {
        font-size: 24px;
    }

    .art_category_clickable_card_element {
        height: 180px;
    }

    .art_category_icon_container_element {
        width: 60px;
        height: 60px;
    }

    .art_category_icon_container_element i {
        font-size: 30px;
    }

    .art_category_title_text_label {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .art_category_clickable_card_element {
        height: 160px;
    }

    .art_category_title_text_label {
        font-size: 14px;
    }
}

.website_footer_main_section_wrapper {
 
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: auto;
}


.footer_brand_logo_display_element {
    width: auto;
    height: 80px;
   margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
   
}

.footer_brand_logo_display_element h1{
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0px;
    font-size: 26px;
    font-family: "Poppins";
}


.footer_navigation_column_heading_text {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.footer_links_navigation_list_container {
    list-style: none;
    padding: 0;
}

.footer_individual_link_list_item {
    margin-bottom: 15px;
}

.footer_clickable_navigation_link_element {
    color: #d1d5db;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}



.footer_clickable_navigation_link_element:hover::after {
    width: 100%;
}

.footer_social_media_follow_section {
    margin-bottom: 40px;
}

.social_media_icons_container_wrapper {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
}

.social_media_icon_clickable_button {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}


.social_media_icon_clickable_button i {
    font-size: 22px;
    color: #ffffff;
}

.footer_statistics_display_container {
    margin-bottom: 35px;
}

.individual_statistic_number_item {
    margin-bottom: 12px;
}

.statistic_numerical_value_text {
    font-family: 'Inter';
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-right: 8px;
}

.statistic_descriptive_label_text {
    font-size: 16px;
    font-weight: 400;
    color: #d1d5db;
}

.footer_copyright_information_section {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

.copyright_text_display_element {
    font-size: 14px;
    color: #9ca3af;
    font-weight: 400;
}

.floating_help_support_button_widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background:
    radial-gradient(
        1200px at 22% 32%,
        rgba(255, 0, 140, 0.55),
        rgba(90, 0, 160, 0.45),
        rgba(30, 0, 50, 0.9) 70%
    ),
    radial-gradient(
        900px at 78% 58%,
        rgba(130, 0, 255, 0.45),
        rgba(0, 0, 0, 0.95)
    ),
    linear-gradient(135deg, rgba(10,0,25,1), rgba(0,0,0,1));
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
  
    transition: all 0.3s ease;
    z-index: 1000;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.help_button_icon_element {
    font-size: 24px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .footer_navigation_column_heading_text {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer_clickable_navigation_link_element {
        font-size: 15px;
    }

    .statistic_numerical_value_text {
        font-size: 20px;
    }

    .statistic_descriptive_label_text {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .website_footer_main_section_wrapper {
        padding: 40px 0 20px;
    }

    .footer_brand_logo_display_element {
        margin-bottom: 20px;
    }

    .footer_navigation_column_heading_text {
        font-size: 16px;
        margin-bottom: 15px;
        margin-top: 25px;
    }

    .footer_clickable_navigation_link_element {
        font-size: 14px;
    }

    .footer_individual_link_list_item {
        margin-bottom: 12px;
    }

    .social_media_icons_container_wrapper {
        margin-bottom: 25px;
    }

    .social_media_icon_clickable_button {
        width: 45px;
        height: 45px;
    }

    .social_media_icon_clickable_button i {
        font-size: 20px;
    }

    .statistic_numerical_value_text {
        font-size: 18px;
    }

    .statistic_descriptive_label_text {
        font-size: 14px;
    }

    .floating_help_support_button_widget {
        padding: 12px 24px;
        font-size: 16px;
        bottom: 20px;
        right: 20px;
    }

    .help_button_icon_element {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .footer_statistics_display_container {
        text-align: center;
    }

    .floating_help_support_button_widget {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Checkout Overlay Styles */
.checkout-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.product-image:hover .checkout-overlay {
    opacity: 1;
    visibility: visible;
}

.checkout-btn {
    background: linear-gradient(135deg, rgb(201, 60, 143) 0%, rgb(140, 40, 100) 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(201, 60, 143, 0.3);
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 60, 143, 0.4);
    background: linear-gradient(135deg, rgb(220, 70, 153) 0%, rgb(160, 50, 120) 100%);
}

.checkout-btn:active {
    transform: translateY(0);
}

/* Product Highlight Effect */
.product-card.highlighted {
    animation: highlightPulse 2s ease-in-out;
    border-color: rgb(201, 60, 143) !important;
    box-shadow: 0 0 20px rgba(201, 60, 143, 0.3) !important;
}

@keyframes highlightPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 60, 143, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(201, 60, 143, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(201, 60, 143, 0);
    }
}

/* Toast Notification Styles */
.custom-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-left: 4px solid rgb(201, 60, 143);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 9999;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    max-width: 350px;
}

.custom-toast.show {
    transform: translateX(0);
}

.toast-icon {
    color: rgb(201, 60, 143);
    font-size: 24px;
}

.toast-content h4 {
    margin: 0 0 5px 0;
    color: #2C3E50;
    font-size: 16px;
    font-weight: 600;
}

.toast-content p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.toast-close {
    background: none;
    border: none;
    color: #999;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.toast-close:hover {
    color: #333;
}

/* Cart Counter Badge */
.cart-counter {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: rgb(201, 60, 143);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(201, 60, 143, 0.3);
    z-index: 1000;
    cursor: pointer;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

 /* Your existing CSS remains unchanged */
    .privacy-policy-main-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
    }

    .privacy-policy-header-section {
        background-color: #ffffff;
        border-radius: 8px;
        padding: 60px 40px;
        margin-bottom: 40px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .privacy-policy-main-title {
        font-size: 3rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 20px;
    }

    .privacy-policy-welcome-text {
        font-size: 1.1rem;
        color: #666;
        max-width: 800px;
        margin: 0 auto;
    }

    .privacy-policy-content-wrapper {
        background-color: #ffffff;
        border-radius: 8px;
        padding: 40px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .privacy-policy-navigation-menu {
        background-color: #f8f9fa;
        border-radius: 6px;
        padding: 30px;
        margin-bottom: 40px;
        border-left: 4px solid rgb(201, 60, 143);
    }

    .privacy-policy-navigation-list {
        list-style: none;
        padding: 0;
    }

    .privacy-policy-navigation-item {
        margin-bottom: 12px;
    }

    .privacy-policy-navigation-link {
        color: rgb(201, 60, 143);
        text-decoration: none;
        font-size: 1rem;
        transition: all 0.3s ease;
        display: inline-block;
    }

    .privacy-policy-navigation-link:hover {
        color: rgb(201, 60, 143);
        transform: translateX(5px);
    }

    .privacy-policy-section-container {
        margin-bottom: 50px;
        scroll-margin-top: 20px;
    }

    .privacy-policy-section-heading {
        font-size: 2rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 3px solid rgb(201, 60, 143);
    }

    .privacy-policy-paragraph-text {
        font-size: 1rem;
        color: #555;
        margin-bottom: 20px;
        line-height: 1.8;
    }

    .privacy-policy-definition-list {
        margin: 20px 0;
    }

    .privacy-policy-definition-term {
        font-weight: 700;
        color: #1a1a1a;
        margin-top: 15px;
        margin-bottom: 5px;
    }

    .privacy-policy-definition-description {
        color: #555;
        margin-left: 0;
        margin-bottom: 10px;
    }

    .privacy-policy-list-unordered {
        margin: 20px 0;
        padding-left: 30px;
        list-style-type: disc;
    }

    .privacy-policy-list-item {
        margin-bottom: 15px;
        color: #555;
        line-height: 1.8;
    }

    .privacy-policy-subheading-text {
        font-size: 1.3rem;
        font-weight: 600;
        color: #1a1a1a;
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .privacy-policy-divider-line {
        border: 0;
        height: 2px;
        background: linear-gradient(to right, transparent, #ddd, transparent);
        margin: 40px 0;
    }

    .privacy-policy-contact-info {
        background-color: #f8f9fa;
        padding: 20px;
        border-radius: 6px;
        margin: 20px 0;
    }

    @media (max-width: 768px) {
        .privacy-policy-main-title {
            font-size: 2rem;
        }

        .privacy-policy-header-section {
            padding: 40px 20px;
        }

        .privacy-policy-content-wrapper {
            padding: 25px;
        }

        .privacy-policy-navigation-menu {
            padding: 20px;
        }

        .privacy-policy-section-heading {
            font-size: 1.5rem;
        }
    }

    @media (max-width: 480px) {
        .privacy-policy-main-container {
            padding: 20px 10px;
        }

        .privacy-policy-main-title {
            font-size: 1.75rem;
        }

        .privacy-policy-content-wrapper {
            padding: 20px;
        }
    }

      /* Your existing CSS remains unchanged */
      .terms-of-service-main-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
    }

    .terms-of-service-header-section {
        background-color: #ffffff;
        border-radius: 8px;
        padding: 60px 40px;
        margin-bottom: 40px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .terms-of-service-main-title {
        font-size: 3rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 20px;
    }

    .terms-of-service-welcome-text {
        font-size: 1.1rem;
        color: #666;
        max-width: 800px;
        margin: 0 auto;
    }

    .terms-of-service-content-wrapper {
        background-color: #ffffff;
        border-radius: 8px;
        padding: 40px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .terms-of-service-navigation-menu {
        background-color: #f8f9fa;
        border-radius: 6px;
        padding: 30px;
        margin-bottom: 40px;
        border-left: 4px solid rgb(201, 60, 143);
    }

    .terms-of-service-navigation-list {
        list-style: none;
        padding: 0;
    }

    .terms-of-service-navigation-item {
        margin-bottom: 12px;
    }

    .terms-of-service-navigation-link {
        color: rgb(201, 60, 143);
        text-decoration: none;
        font-size: 1rem;
        transition: all 0.3s ease;
        display: inline-block;
    }

    .terms-of-service-navigation-link:hover {
        color: rgb(201, 60, 143);
        transform: translateX(5px);
    }

    .terms-of-service-section-container {
        margin-bottom: 50px;
        scroll-margin-top: 20px;
    }

    .terms-of-service-section-heading {
        font-size: 2rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 3px solid rgb(201, 60, 143);
    }

    .terms-of-service-paragraph-text {
        font-size: 1rem;
        color: #555;
        margin-bottom: 20px;
        line-height: 1.8;
    }

    .terms-of-service-definition-list {
        margin: 20px 0;
    }

    .terms-of-service-definition-term {
        font-weight: 700;
        color: #1a1a1a;
        margin-top: 15px;
        margin-bottom: 5px;
    }

    .terms-of-service-definition-description {
        color: #555;
        margin-left: 0;
        margin-bottom: 10px;
    }

    .terms-of-service-external-link {
        color: #007bff;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .terms-of-service-external-link:hover {
        color: #0056b3;
        text-decoration: underline;
    }

    .terms-of-service-divider-line {
        border: 0;
        height: 2px;
        background: linear-gradient(to right, transparent, #ddd, transparent);
        margin: 40px 0;
    }

    .terms-of-service-list-ordered {
        margin: 20px 0;
        padding-left: 30px;
    }

    .terms-of-service-list-item {
        margin-bottom: 15px;
        color: #555;
        line-height: 1.8;
    }

    .terms-of-service-subheading-text {
        font-size: 1.3rem;
        font-weight: 600;
        color: #1a1a1a;
        margin-top: 25px;
        margin-bottom: 15px;
    }

    @media (max-width: 768px) {
        .terms-of-service-main-title {
            font-size: 2rem;
        }

        .terms-of-service-header-section {
            padding: 40px 20px;
        }

        .terms-of-service-content-wrapper {
            padding: 25px;
        }

        .terms-of-service-navigation-menu {
            padding: 20px;
        }

        .terms-of-service-section-heading {
            font-size: 1.5rem;
        }
    }

    @media (max-width: 480px) {
        .terms-of-service-main-container {
            padding: 20px 10px;
        }

        .terms-of-service-main-title {
            font-size: 1.75rem;
        }

        .terms-of-service-content-wrapper {
            padding: 20px;
        }
    }

    .payment-method-container-wrapper {
        max-width: 650px;
        margin: 0 auto;
    }

    .payment-section-heading-title {
        font-size: 28px;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 20px;
    }



    .payment-method-radio-option-wrapper {
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        padding: 20px;
        margin-bottom: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
    }

    .payment-method-radio-option-wrapper:hover {
        border-color: #c0c0c0;
    }

    .payment-method-radio-option-wrapper.selected-payment-method-option {
        border-color: rgb(201, 60, 143);
        background-color: #ffffff;
    }

    .payment-method-radio-input-element {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

    .payment-option-label-content-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }

    .payment-method-radio-button-custom {
        width: 20px;
        height: 20px;
        border: 2px solid #d0d0d0;
        border-radius: 50%;
        display: inline-block;
        position: relative;
        flex-shrink: 0;
    }

    .selected-payment-method-option .payment-method-radio-button-custom {
        border-color: rgb(201, 60, 143);
    }

    .payment-method-radio-button-custom::after {
        content: '';
        width: 10px;
        height: 10px;
        background-color: rgb(201, 60, 143);
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        transition: transform 0.2s ease;
    }

    .selected-payment-method-option .payment-method-radio-button-custom::after {
        transform: translate(-50%, -50%) scale(1);
    }

    .payment-method-name-and-icons-container {
        display: flex;
        align-items: center;
        gap: 12px;
        flex: 1;
        margin-left: 15px;
    }

    .payment-method-display-name-text {
        font-size: 16px;
        font-weight: 500;
        color: #1a1a1a;
        margin: 0;
    }

    .credit-card-brand-logos-container {
        display: flex;
        gap: 8px;
        margin-left: auto;
    }

    .credit-card-brand-logo-image {
        height: 24px;
        width: auto;
    }

    .payment-provider-brand-logo-image {
        height: 20px;
        width: auto;
    }

    .credit-card-email-requirement-message {
        background-color: #f8f9fa;
        padding: 16px;
        border-radius: 6px;
        margin-top: 16px;
        text-align: center;
    }

    .email-requirement-message-text {
        color: #666;
        font-size: 14px;
        line-height: 1.5;
        margin: 0;
    }

    .payment-submit-button-container {
        margin-top: 24px;
    }

    .payment-action-submit-button {
        width: 100%;
        background-color: #4caf50;
        color: white;
        border: none;
        padding: 16px;
        border-radius: 8px;
        font-size: 18px;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .payment-action-submit-button:hover {
        background-color: #45a049;
    }

    .payment-action-submit-button:active {
        background-color: #3d8b40;
    }

    .payment-notification-message-container {
        margin-top: 20px;
        padding: 15px;
        border-radius: 8px;
        display: none;
    }

    .payment-notification-message-container.success-message-display {
        background-color: #d4edda;
        border: 1px solid #c3e6cb;
        color: #155724;
        display: block;
    }

    .payment-notification-message-container.error-message-display {
        background-color: #f8d7da;
        border: 1px solid #f5c6cb;
        color: #721c24;
        display: block;
    }

    @media (max-width: 576px) {
        .payment-section-heading-title {
            font-size: 24px;
        }

       

        .payment-method-radio-option-wrapper {
            padding: 16px;
        }

        .credit-card-brand-logos-container {
            flex-wrap: wrap;
        }

        .credit-card-brand-logo-image {
            height: 20px;
        }
    }