/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(37, 99, 235, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}


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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 50px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    line-height: 1.2;
    max-width: 280px;
}


.hero-tagline {
    margin: 1rem 0;
    text-align: center;
}

.tagline-highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0f0f0f;
    font-style: italic;
    background: linear-gradient(135deg, #0c0c0c, #0c0c0c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* text-shadow: 0 2px 4px rgba(247, 245, 245, 0.3);*/
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #f8f9fa;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #fbbf24;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #2563eb;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #374151;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    color: #fbbf24;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2563eb;
}

.btn-outline {
    background: #3b82f6 !important;
    color: white !important;
    border: 2px solid #3b82f6 !important;
}

.btn-outline:hover {
    background: #2563eb !important;
    border-color: #2563eb !important;
    color: white !important;
}

/* Methodology Preview */
.methodology-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    position: relative;
}

.methodology-preview::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    z-index: 0;
}

.phase-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

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

.methodology-preview > a:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 200px;
    margin: 0 auto;
}

.phase-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.phase-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.phase-card p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.tool-button {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s ease;
}

.tool-button:hover {
    transform: translateY(-2px);
}



/* Color Schemes */

.er { border-left: 4px solid #f97316; padding-left: 2rem; }
.sample { border-left: 4px solid #dc2626; padding-left: 2rem; }
.dr { border-left: 4px solid #2563eb; padding-left: 2rem; }
.abc { border-left: 4px solid #16a34a; padding-left: 2rem; }
.de { border-left: 4px solid #eab308; padding-left: 2rem; }

/* Problem Section */
.problem-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.problem-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.problem-card i {
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

/* Methodology Section */
.methodology-section {
    padding: 5rem 0;
    background: white;
}

.methodology-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.methodology-grid {
    display: grid;
    gap: 2rem;
}

.methodology-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
}

.phase-number {
    background: #2563eb;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.phase-color {
    width: 4px;
    height: 40px;
    border-radius: 2px;
    position: absolute;
    right: 0rem;
}

.er-color { background: #f97316; }
.sample-color { background: #dc2626; }
.dr-color { background: #2563eb; }
.abc-color { background: #16a34a; }
.de-color { background: #eab308; }

.methodology-card h3 {
    font-size: 1.4rem;
    color: #1f2937;
}

.methodology-card ul {
    list-style: none;
    margin-top: 1rem;
}

.methodology-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.methodology-card li:last-child {
    border-bottom: none;
}

/* Tools Section */
.tools-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.tools-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tool-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.tool-card.featured {
    border: 2px solid #2563eb;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
}

.tool-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

.er-bg { background: #f97316; }
.sample-bg { background: #dc2626; }
.dr-bg { background: #2563eb; }
.abc-bg { background: #16a34a; }
.de-bg { background: #eab308; }

.tool-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.tool-card.featured h3 {
    color: white;
}

.tool-card p {
    margin-bottom: 1.5rem;
    color: #6b7280;
}

.tool-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: white;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

/* Resources Section */
.resources-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.resources-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.resource-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.resource-card i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.resource-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

/* Training Section */
.training-section {
    padding: 5rem 0;
    background: white;
}

.training-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

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

.training-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.training-card.featured {
    border-color: #2563eb;
    background: linear-gradient(135deg, #f8fafc, #e0e7ff);
    position: relative;
}

.training-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.training-header {
    margin-bottom: 2rem;
}

.training-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
}

.training-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.training-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    padding-left: 1.5rem;
}

.training-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

.training-features li:last-child {
    border-bottom: none;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.contact-info p {
    margin-bottom: 1rem;
    color: #6b7280;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-item i {
    color: #2563eb;
    width: 20px;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #fbbf24;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fbbf24;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .methodology-preview {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .methodology-preview::before {
        display: none;
    }
    
    .phase-card:nth-child(5) {
        grid-column: 1;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .methodology-card,
    .tool-card,
    .resource-card {
        padding: 1.5rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}



/* Payment Information Styles */
.payment-info {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 2px solid #0ea5e9;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.payment-info h3 {
    color: #0369a1;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.payment-info p {
    color: #374151;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.payment-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.payment-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #059669;
    font-weight: 500;
}

.payment-feature i {
    color: #0ea5e9;
    font-size: 1.2rem;
}

/* Mobile responsiveness for logo */
@media (max-width: 768px) {
    .nav-logo {
        gap: 8px;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .logo-title {
        font-size: 1.5rem;
    }
    
    .logo-subtitle {
        font-size: 0.65rem;
        max-width: 200px;
    }
    
    .hero-tagline {
        margin: 0.5rem 0;
    }
    
    .tagline-highlight {
        font-size: 1.1rem;
    }
    
    .payment-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
}

/* Curriculum Toggle Styles */
.curriculum-toggle {
    width: 100%;
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    margin: 1rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: #374151;
    transition: all 0.3s ease;
}

.curriculum-toggle:hover {
    background: #e5e7eb;
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.curriculum-toggle.active .toggle-icon {
    transform: rotate(180deg);
}

/* Hide curriculum content by default */
.curriculum-content {
    display: none;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.curriculum-content.show {
    display: block;
}

.curriculum-module {
    margin-bottom: 1rem;
}

.curriculum-module h5 {
    color: #2563eb;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.curriculum-module ul {
    margin-left: 1rem;
    margin-bottom: 0;
}

.curriculum-module li {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}


/* Reset Button - Force Visibility */
.reset-btn, 
button[type="reset"], 
input[type="reset"],
.btn-secondary {
    background: #6b7280 !important;
    color: white !important;
    border: 1px solid #6b7280 !important;
    padding: 8px 16px !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    font-weight: 500 !important;
}

.reset-btn:hover, 
button[type="reset"]:hover, 
input[type="reset"]:hover,
.btn-secondary:hover {
    background: #4b5563 !important;
    color: white !important;
    border-color: #4b5563 !important;
}

/* Fix for Reset Button Visibility */
.btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.9rem;
}

.btn-outline {
    background: #6b7280 !important;
    color: white !important;
    border: 2px solid #6b7280 !important;
}

.btn-outline:hover {
    background: #4b5563 !important;
    border-color: #4b5563 !important;
    color: white !important;
}

.btn-primary {
    background: #2563eb !important;
    color: white !important;
    border: 2px solid #2563eb !important;
}

.btn-primary:hover {
    background: #1d4ed8 !important;
    border-color: #1d4ed8 !important;
}




/* Coming Soon Training Section */
.coming-soon-subtitle {
    color: #2563eb;
    font-weight: 600;
    font-size: 1.2rem;
}

.coming-soon-container {
    max-width: 800px;
    margin: 3rem auto;
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.coming-soon-content h3 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.coming-soon-description {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.coming-soon-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.feature-icon {
    font-size: 1.2rem;
}

.waitlist-button {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.waitlist-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

@media (max-width: 768px) {
    .coming-soon-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .coming-soon-content h3 {
        font-size: 1.5rem;
    }
}


/* Thank You Page Styles */
.thank-you-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100% );
    padding: 2rem;
}

.thank-you-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.success-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.thank-you-content h1 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.thank-you-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.thank-you-content ul {
    text-align: left;
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.thank-you-content li {
    margin-bottom: 0.5rem;
    color: #6b7280;
}

.thank-you-content a {
    color: #10b981;
    text-decoration: none;
}

.thank-you-content a:hover {
    text-decoration: underline;
}
