/* ============================================
   RELIABLEAFFILIATES.COM - MAIN STYLES
   Unique Design with ra- prefix classes
   ============================================ */

:root {
    --ra-primary: #2563eb;
    --ra-primary-dark: #1e40af;
    --ra-secondary: #7c3aed;
    --ra-accent: #fbbf24;
    --ra-dark: #152039;
    --ra-dark-light: #203054;
    --ra-text: #f4f6fb;
    --ra-text-muted: #b8c4da;
    --ra-bg-dark: #0f172a;
    --ra-bg-darker: #0a1222;
    --ra-border: #43506d;
    --ra-success: #10b981;
    --ra-gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --ra-gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --ra-gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle at top, #1a2542 0%, var(--ra-bg-dark) 55%, var(--ra-bg-darker) 100%);
    color: var(--ra-text);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

.ra-canvas-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at center, var(--ra-bg-darker) 0%, var(--ra-bg-dark) 100%);
}

/* Header Styles */
.ra-header-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(18, 27, 48, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--ra-border);
    transition: all 0.3s ease;
}

.ra-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ra-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.ra-logo-link:hover {
    transform: scale(1.05);
}

.ra-logo-img {
    height: 45px;
    width: auto;
}

.ra-nav-desktop {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.ra-nav-item {
    color: var(--ra-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.ra-nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ra-gradient-1);
    transition: width 0.3s ease;
}

.ra-nav-item:hover {
    color: #fff;
}

.ra-nav-item:hover::after {
    width: 100%;
}

/* Burger Menu Button */
.ra-burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

.ra-burger-line {
    width: 28px;
    height: 3px;
    background: var(--ra-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.ra-burger-btn.active {
    visibility: hidden;
    pointer-events: none;
}

/* Mobile Menu Overlay */
.ra-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(12, 18, 35, 0.95);
    backdrop-filter: blur(15px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.ra-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.ra-mobile-menu {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.ra-close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.ra-close-line {
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--ra-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.ra-close-line:nth-child(1) {
    transform: rotate(45deg);
}

.ra-close-line:nth-child(2) {
    transform: rotate(-45deg);
}

.ra-close-btn:hover .ra-close-line {
    background: var(--ra-accent);
}

.ra-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.ra-mobile-link {
    color: var(--ra-text);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
}

.ra-mobile-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--ra-gradient-1);
    transition: width 0.3s ease;
}

.ra-mobile-link:hover {
    color: #fff;
    transform: translateY(-3px);
}

.ra-mobile-link:hover::after {
    width: 80%;
}

/* Hero Section */
.ra-hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    z-index: 1;
}

.ra-hero-content {
    max-width: 1000px;
    text-align: center;
    animation: fadeInUp 1s ease;
}

.ra-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--ra-gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.ra-hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--ra-accent);
    margin-bottom: 2rem;
    font-weight: 600;
}

.ra-hero-description {
    font-size: 0.7rem;
    color: var(--ra-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Container */
.ra-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Section Titles */
.ra-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--ra-gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ra-section-subtitle {
    text-align: center;
    color: var(--ra-text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Partners Section */
.ra-partners-section {
    position: relative;
    padding: 6rem 0;
    z-index: 1;
}

.ra-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.ra-partner-card {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid var(--ra-border);
    border-radius: 20px;
    padding: 1.7rem;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.ra-partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--ra-gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.ra-partner-card:hover {
    transform: translateY(-10px);
    border-color: var(--ra-primary);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
}

.ra-partner-card:hover::before {
    opacity: 0.1;
}

.ra-partner-image-wrapper {
    margin-bottom: 1.5rem;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ra-partner-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0.9);
    transition: all 0.3s ease;
}

.ra-partner-card:hover .ra-partner-img {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.ra-partner-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--ra-text);
}

.ra-partner-bonus {
    color: var(--ra-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.ra-partner-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    padding: 1rem 1rem;
    border-radius: 12px;
    background: var(--ra-gradient-1);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
}

.ra-partner-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.ra-partner-cta:hover::before {
    left: 100%;
}

.ra-partner-cta::after {
    content: '→';
    margin-left: 0.75rem;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.ra-partner-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #5a67d8 0%, #805ad5 100%);
}

.ra-partner-cta:hover::after {
    transform: translateX(4px);
}

.ra-partner-cta:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

/* Why Us Section */
.ra-why-section {
    position: relative;
    padding: 6rem 0;
    z-index: 1;
}

.ra-why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.ra-why-text {
    animation: fadeInLeft 1s ease;
}

.ra-why-description {
    font-size: 1.1rem;
    color: var(--ra-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.ra-why-image-wrapper {
    animation: fadeInRight 1s ease;
}

.ra-why-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.ra-why-image:hover {
    transform: scale(1.02);
}

.ra-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ra-feature-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--ra-border);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.ra-feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--ra-primary);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.2);
}

.ra-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--ra-gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.ra-feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--ra-text);
}

.ra-feature-text {
    color: var(--ra-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Testimonials Section */
.ra-testimonials-section {
    position: relative;
    padding: 6rem 0;
    z-index: 1;
}

.ra-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ra-testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--ra-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.ra-testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 6rem;
    font-family: 'Playfair Display', serif;
    color: var(--ra-primary);
    opacity: 0.2;
    line-height: 1;
}

.ra-testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--ra-primary);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.2);
}

.ra-testimonial-content {
    position: relative;
    z-index: 1;
}

.ra-testimonial-text {
    font-size: 1.05rem;
    color: var(--ra-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-style: italic;
}

.ra-testimonial-author {
    color: var(--ra-accent);
    font-weight: 600;
    font-size: 1rem;
}

/* FAQ Section */
.ra-faq-section {
    position: relative;
    padding: 6rem 0;
    z-index: 1;
}

.ra-faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.ra-faq-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--ra-border);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.ra-faq-item:hover {
    border-color: var(--ra-primary);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.ra-faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--ra-text);
}

.ra-faq-answer {
    color: var(--ra-text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Footer */
.ra-footer-main {
    position: relative;
    background: linear-gradient(180deg, rgba(15, 22, 40, 0.95), rgba(8, 12, 26, 0.98));
    border-top: 1px solid var(--ra-border);
    padding: 4rem 0 2rem;
    z-index: 1;
}

.ra-footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.ra-footer-brand {
    animation: fadeInUp 1s ease;
}

.ra-footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.ra-footer-tagline {
    color: var(--ra-text-muted);
    font-size: 1rem;
}

.ra-footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.ra-footer-column {
    animation: fadeInUp 1s ease;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.ra-footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--ra-text);
}

.ra-footer-link {
    display: block;
    color: var(--ra-text-muted);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.ra-footer-link:hover {
    color: var(--ra-primary);
    transform: translateX(5px);
}

.ra-footer-help {
    margin-top: 3rem;
    padding: 3rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
      background: rgb(255 255 255 / 12%);
    border-radius: 20px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.ra-footer-help-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--ra-text);
}

.ra-footer-help-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.ra-help-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    opacity: 0.85;
    height: 60px;
    padding: 0.9rem 1.1rem;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ra-help-logo-link:hover {
    transform: scale(1.1);
    opacity: 1;
}

.ra-help-logo {
    max-height: 35px;
    max-width: 150px;
    object-fit: contain;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.ra-help-logo-link:hover .ra-help-logo {
    filter: brightness(1.2);
}

.ra-footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--ra-border);
    text-align: center;
}

.ra-footer-copyright {
    color: var(--ra-text-muted);
    font-size: 0.9rem;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsive Design */
@media (max-width: 991px) {
    .ra-nav-desktop {
        display: none;
    }

    .ra-burger-btn {
        display: flex;
    }

    .ra-why-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ra-footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ra-footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .ra-header-inner {
        padding: 1rem 1.5rem;
    }

    .ra-hero-section {
        padding: 6rem 1.5rem 3rem;
    }

    .ra-container {
        padding: 0 1.5rem;
    }

    .ra-partners-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ra-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .ra-features-grid {
        grid-template-columns: 1fr;
    }

    .ra-footer-help-logos {
        gap: 1.5rem;
    }

    .ra-help-logo {
        max-height: 40px;
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .ra-hero-title {
        font-size: 2rem;
    }

    .ra-hero-subtitle {
        font-size: 1.1rem;
    }

    .ra-section-title {
        font-size: 1.8rem;
    }

    .ra-partner-card,
    .ra-testimonial-card,
    .ra-faq-item {
        padding: 1.5rem;
    }
}

/* Policy Pages Styles */
.ra-policy-main {
    position: relative;
    padding: 8rem 0 4rem;
    min-height: 100vh;
    z-index: 1;
}

.ra-policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid var(--ra-border);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.ra-policy-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--ra-gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ra-policy-intro {
    font-size: 1.2rem;
    color: var(--ra-text-muted);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.ra-policy-section {
    margin-bottom: 3rem;
}

.ra-policy-heading {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--ra-text);
}

.ra-policy-subheading {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--ra-text);
}

.ra-policy-section p {
    color: var(--ra-text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.ra-policy-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.ra-policy-list li {
    color: var(--ra-text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
}

.ra-policy-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--ra-primary);
    font-weight: bold;
}

.ra-policy-link {
    color: var(--ra-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ra-policy-link:hover {
    color: var(--ra-accent);
    text-decoration: underline;
}

/* Contact Form Styles */
.ra-contact-form {
    margin-top: 2rem;
}

.ra-form-group {
    margin-bottom: 1.5rem;
}

.ra-form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--ra-text);
    font-weight: 500;
    font-size: 1rem;
}

.ra-form-input,
.ra-form-textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--ra-border);
    border-radius: 10px;
    color: var(--ra-text);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.ra-form-input:focus,
.ra-form-textarea:focus {
    outline: none;
    border-color: var(--ra-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.ra-form-textarea {
    resize: vertical;
    min-height: 150px;
}

.ra-form-submit {
    background: var(--ra-gradient-1);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.ra-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.ra-form-submit:active {
    transform: translateY(0);
}

/* Success Popup */
.ra-success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.ra-success-popup.active {
    opacity: 1;
    visibility: visible;
}

.ra-success-popup-content {
    background: rgba(30, 41, 59, 0.95);
    border: 1px solid var(--ra-border);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.ra-success-popup.active .ra-success-popup-content {
    transform: scale(1);
}

.ra-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--ra-gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    font-weight: bold;
    animation: successBounce 0.5s ease;
}

@keyframes successBounce {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.ra-success-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--ra-text);
    font-family: 'Playfair Display', serif;
}

.ra-success-text {
    color: var(--ra-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.ra-success-close {
    background: var(--ra-gradient-1);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.ra-success-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.ra-success-close:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .ra-success-popup-content {
        padding: 2rem 1.5rem;
    }

    .ra-success-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .ra-success-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .ra-policy-content {
        padding: 2rem 1.5rem;
    }

    .ra-policy-title {
        font-size: 1.8rem;
    }

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

/* Print Styles */
@media print {
    .ra-canvas-background,
    .ra-burger-btn,
    .ra-mobile-overlay {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}

