.investment-plans-container {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: auto;
}

.plans-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.plans-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.plan-card {
    background: #ffffff;
    border: 1px solid #e1e4e8;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    transition: transform 0.3s;
}

.plan-card:hover {
    transform: translateY(-5px);
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #34495e;
}

.badge {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    border-radius: 5px;
    color: #fff;
}

.badge-active {
    background-color: #27ae60;
}

.plan-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.plan-detail {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.label {
    color: #7f8c8d;
}

.value {
    font-weight: bold;
    color: #2c3e50;
}

.plan-footer {
    text-align: center;
}

.btn {
    padding: 0.5rem 1rem;
    background-color: #2980b9;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.btn:hover {
    background-color: #21618c;
}

.status-text {
    font-size: 0.9rem;
    color: #27ae60;
    font-weight: 500;
}
/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #34495e;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Block Styles */
.how-it-works, .referral-program, .risk-free-investment {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 85%;
}

.how-it-works:hover, .referral-program:hover, .risk-free-investment:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

p {
    font-size: 1rem;
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 1.5rem;
}

ul {
    list-style-type: none;
    padding: 0;
    font-size: 1rem;
}

ul li {
    margin-bottom: 0.8rem;
    color: #7f8c8d;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #2980b9;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    margin-top: 1rem;
}

.btn:hover {
    background-color: #21618c;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    background-color: #f7f9fc;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.step-item h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #2c3e50;
}

.step-item p {
    font-size: 1rem;
    color: #7f8c8d;
}

/* Referral Program Block Styles */
.referral-program {
    background-color: #ffffff;
    border: 1px solid #e1e4e8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.referral-program ul li {
    font-size: 1rem;
    color: #7f8c8d;
}

.referral-program .btn {
    background-color: #27ae60;
}

.referral-program .btn:hover {
    background-color: #1e8449;
}

/* Risk-Free Investment Block Styles */
.risk-free-investment {
    background-color: #ffffff;
    border: 1px solid #e1e4e8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.risk-free-investment ul li {
    font-size: 1rem;
    color: #7f8c8d;
}

.risk-free-investment .btn {
    background-color: #f39c12;
}

.risk-free-investment .btn:hover {
    background-color: #e67e22;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .steps-container {
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
        padding: 1rem;
    }

    .how-it-works, .referral-program, .risk-free-investment {
        padding: 1.5rem;
    }
}

/* Footer Styling */
.footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 2rem 0;
    font-family: 'Arial', sans-serif;
    text-align: center;
    border-top: 4px solid #2980b9;
}

.footer .footer-content {
    max-width: 1200px;
    margin: auto;
}

.footer .social-icons {
    margin: 1rem 0;
}

.footer .social-icons a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 10px;
    padding: 10px;
    transition: background-color 0.3s, transform 0.2s;
    border-radius: 50%;
    display: inline-block;
}

.footer .social-icons a:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
}

.footer .footer-links {
    margin: 1rem 0;
}

.footer .footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s;
}

.footer .footer-links a:hover {
    color: #fff;
}

.footer .footer-bottom {
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.footer .footer-bottom p {
    margin: 0;
}

.footer .footer-bottom p a {
    color: #bdc3c7;
    text-decoration: none;
}

.footer .footer-bottom p a:hover {
    color: #fff;
}

/* Mobile and Tablet Responsive */
@media (max-width: 768px) {
    .footer .social-icons a {
        font-size: 1.2rem;
        margin: 0 8px;
    }

    .footer .footer-links a {
        font-size: 0.9rem;
        margin: 0 8px;
    }

    .footer .footer-bottom p {
        font-size: 0.8rem;
    }
}
/* General Header Styling */
.site-header {
    background-color: #34495e;
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 2px solid #2980b9;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.site-header .logo img {
    height: 40px; /* Adjust based on your logo size */
}

.site-header .nav-links ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-header .nav-links li {
    margin-right: 2rem;
}

.site-header .nav-links a {
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s;
}

.site-header .nav-links a:hover {
    color: #2980b9;
}

.site-header .user-links a {
    color: #fff;
    padding: 0.5rem 1rem;
    margin-left: 10px;
    text-decoration: none;
    background-color: #2980b9;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.site-header .user-links a:hover {
    background-color: #21618c;
}

.site-header .btn-logout {
    background-color: #e74c3c;
}

.site-header .btn-logout:hover {
    background-color: #c0392b;
}

.site-header .btn-register {
    background-color: #27ae60;
}

.site-header .btn-register:hover {
    background-color: #2ecc71;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .site-header {
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
    }

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

    .site-header .nav-links {
        width: 100%;
        text-align: left;
        margin-top: 1rem;
    }

    .site-header .nav-links ul {
        flex-direction: column;
    }

    .site-header .nav-links li {
        margin-bottom: 1rem;
    }

    .site-header .user-links {
        margin-top: 1rem;
    }
}
/* Header Base */
.site-header {
    background-color: #2c3e50;
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo */
.site-header .logo img {
    height: 45px;
    transition: transform 0.3s ease;
}
.site-header .logo img:hover {
    transform: scale(1.05);
}

/* Navigation */
.nav-links ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav-links a:hover {
    color: #1abc9c;
}

/* Auth Buttons */
.user-links {
    display: flex;
    gap: 0.75rem;
}

.user-links .btn {
    text-decoration: none;
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s;
}

.user-links .login {
    background-color: #2980b9;
    color: #fff;
}
.user-links .login:hover {
    background-color: #21618c;
    transform: translateY(-2px);
}

.user-links .register {
    background-color: #27ae60;
    color: #fff;
}
.user-links .register:hover {
    background-color: #1e8449;
    transform: translateY(-2px);
}

.user-links .logout {
    background-color: #e74c3c;
    color: #fff;
}
.user-links .logout:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links ul {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }

    .user-links {
        margin-top: 1rem;
        width: 100%;
        justify-content: flex-start;
    }
}


.investment-plans-container {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: auto;
}

.plans-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.plans-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.plan-card {
    background: #ffffff;
    border: 1px solid #e1e4e8;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    transition: transform 0.3s;
}

.plan-card:hover {
    transform: translateY(-5px);
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #34495e;
}

.badge {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    border-radius: 5px;
    color: #fff;
}

.badge-active {
    background-color: #27ae60;
}

.plan-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.plan-detail {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.label {
    color: #7f8c8d;
}

.value {
    font-weight: bold;
    color: #2c3e50;
}

.plan-footer {
    text-align: center;
}

.btn {
    padding: 0.5rem 1rem;
    background-color: #2980b9;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.btn:hover {
    background-color: #21618c;
}

.status-text {
    font-size: 0.9rem;
    color: #27ae60;
    font-weight: 500;
}
/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #34495e;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Block Styles */
.how-it-works, .referral-program, .risk-free-investment {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-it-works:hover, .referral-program:hover, .risk-free-investment:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

p {
    font-size: 1rem;
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 1.5rem;
}

ul {
    list-style-type: none;
    padding: 0;
    font-size: 1rem;
}

ul li {
    margin-bottom: 0.8rem;
    color: #7f8c8d;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #2980b9;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    margin-top: 1rem;
}

.btn:hover {
    background-color: #21618c;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    background-color: #f7f9fc;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.step-item h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #2c3e50;
}

.step-item p {
    font-size: 1rem;
    color: #7f8c8d;
}

/* Referral Program Block Styles */
.referral-program {
    background-color: #ffffff;
    border: 1px solid #e1e4e8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.referral-program ul li {
    font-size: 1rem;
    color: #7f8c8d;
}

.referral-program .btn {
    background-color: #27ae60;
}

.referral-program .btn:hover {
    background-color: #1e8449;
}

/* Risk-Free Investment Block Styles */
.risk-free-investment {
    background-color: #ffffff;
    border: 1px solid #e1e4e8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.risk-free-investment ul li {
    font-size: 1rem;
    color: #7f8c8d;
}

.risk-free-investment .btn {
    background-color: #f39c12;
}

.risk-free-investment .btn:hover {
    background-color: #e67e22;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .steps-container {
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
        padding: 1rem;
    }

    .how-it-works, .referral-program, .risk-free-investment {
        padding: 1.5rem;
    }
}

:root {
    --emerald: #10B981;
    --emerald-dark: #059669;
}

.payment-page {
    background: #f8fafc;
    min-height: 100vh;
}

.payment-card {
    border: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-radius: 1rem;
}

.payment-header {
    background: var(--emerald);
    border-radius: 1rem 1rem 0 0;
    padding: 1.5rem;
}

.payment-method-card {
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-method-card:hover {
    border-color: var(--emerald);
    transform: translateY(-2px);
}

.payment-method-card.selected {
    border-color: var(--emerald);
    background-color: #f0fdf4;
}

.qr-code-container {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.payment-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1rem 0;
}

.payment-icons svg {
    height: 30px;
    width: auto;
}

.btn-primary {
    background-color: var(--emerald);
    border-color: var(--emerald);
    border-radius: 0.5rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--emerald-dark);
    border-color: var(--emerald-dark);
}

.instructions-card {
    background: #f8fafc;
    border: none;
    border-radius: 0.75rem;
}

.instructions-card ol li {
    padding: 0.5rem 0;
    color: #475569;
}

.income-description,
.income-description{
    color: #fff !important;
}

.wp-block-post-title{
    display: none !important;
}

@media screen and (max-width: 782px) {
    .invest-plans-my-account h1 {
        font-size: 1.5rem;
    }

    .invest-plans-my-account{
        padding: 0 !important;
    }

    .wp-block-group .risk-free-investment{
        margin-top: 30px !important;
    }
    .risk-free-investment,
    .referral-program,
    .how-it-works{
        margin: 0 !important;
        max-width: 100%;
    }
}

.btn{
    background-color: #10B981 !important;
    border-color: #10B981 !important;
}


.sfdff{
    background: #303841;
}

// ... existing code ...

.referral-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.stat-box h3 {
    margin: 0 0 10px;
    color: #666;
}

.stat-box p {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.referral-link-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.link-container {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.link-container input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.referral-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.referral-table th,
.referral-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.referral-table th {
    background: #f8f9fa;
    font-weight: 600;
}



