/* 
 * Spotalight Swim - Main Stylesheet
 * A unique, responsive design for a swimming-focused website
 */

/* ========== GLOBAL STYLES ========== */
:root {
    /* Primary Colors */
    --primary-color: #40E0D0;       /* Turquoise */
    --primary-light: #8EEDF7;       /* Light Aqua */
    --primary-dark: #003366;        /* Deep Navy */
    --accent-color: #FF7F50;        /* Coral */
    
    /* Neutral Colors */
    --dark: #001830;                /* Very Dark Blue */
    --text-dark: #333333;           /* Dark Gray */
    --text-light: #ffffff;          /* White */
    --bg-light: #f5fbfd;            /* Very Light Blue */
    
    /* Typography */
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Open Sans', sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --section-spacing: 100px;
    --border-radius: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--text-light);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 20px;
}

a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

ul, ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.sub-title {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
}

/* ========== BUTTONS ========== */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-light);
    box-shadow: 0 5px 15px rgba(255, 127, 80, 0.3);
}

.btn-primary:hover {
    background-color: #ff6a3c;
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 127, 80, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
}

.btn-secondary:hover {
    background-color: var(--primary-dark);
    color: var(--text-light);
    transform: translateY(-3px);
}

/* ========== FORM ELEMENTS ========== */
input, textarea, select {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: var(--body-font);
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(64, 224, 208, 0.2);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-dark);
}

.form-group {
    margin-bottom: 20px;
}

/* ========== HEADER ========== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: block;
}

.logo img {
    height: 40px;
    width: auto;
}

nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-dark);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.join-now-btn {
    margin-left: 15px;
    font-size: 0.9rem;
    padding: 8px 20px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ========== HERO SECTION ========== */
#hero {
    height: 100vh;
    min-height: 650px;
    background: linear-gradient(rgba(0, 51, 102, 0.7), rgba(0, 24, 48, 0.8)), url('images/hero-swimming.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-align: center;
    padding-top: 80px;
    overflow: hidden;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

#hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

#hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--primary-light);
}

.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* ========== BENEFITS SECTION ========== */
#benefits {
    background-color: var(--text-light);
    position: relative;
    z-index: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.benefit-card h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.section-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* ========== WHO IT'S FOR SECTION ========== */
#who-its-for {
    background-color: var(--bg-light);
    position: relative;
}

.age-groups {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.age-group {
    display: flex;
    gap: 40px;
    align-items: center;
}

.age-group.reverse {
    flex-direction: row-reverse;
}

.age-group-image {
    flex: 1;
    max-width: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.age-group-image img {
    transition: transform 0.5s ease;
}

.age-group:hover .age-group-image img {
    transform: scale(1.05);
}

.age-group-content {
    flex: 1;
}

.age-group-content h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.age-group-content ul {
    list-style-type: none;
    padding-left: 0;
}

.age-group-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.age-group-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ========== SCHEDULE SECTION ========== */
#schedule {
    background-color: var(--primary-light);
    background-image: linear-gradient(135deg, rgba(142, 237, 247, 0.7) 0%, rgba(0, 51, 102, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.bubble-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/buble.jpg');
    background-size: 100px 100px;
    z-index: -1;
}

.schedule-container {
    background-color: var(--text-light);
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.weekday-labels {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 15px 0;
}

.weekday {
    font-weight: 600;
    font-family: var(--heading-font);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-auto-rows: minmax(80px, auto);
    gap: 1px;
    background-color: #eee;
}

.schedule-cell {
    background-color: var(--text-light);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.schedule-cell:hover {
    background-color: var(--primary-light);
    transform: scale(1.05);
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.schedule-cell::before {
    content: attr(data-time);
    position: absolute;
    top: 5px;
    left: 5px;
    font-size: 0.7rem;
    color: var(--primary-dark);
    opacity: 0.7;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* ========== HOW IT WORKS SECTION ========== */
#how-it-works {
    background-color: var(--text-light);
    position: relative;
}

.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline-track {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 15px;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(64, 224, 208, 0.3);
}

.step-content {
    padding-top: 10px;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* ========== PRICING SECTION ========== */
#pricing {
    background-color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    flex: 1;
    max-width: 350px;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background-color: var(--accent-color);
    color: var(--text-light);
    padding: 8px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 1;
    box-shadow: 0 5px 10px rgba(255, 127, 80, 0.3);
}

.card-header {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 30px 20px;
    text-align: center;
}

.card-header h3 {
    color: var(--text-light);
    margin-bottom: 15px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--heading-font);
}

.price span {
    font-size: 1rem;
    opacity: 0.8;
}

.card-body {
    padding: 30px;
}

.pricing-card ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.pricing-card ul li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 25px;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.pricing-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.pricing-card .btn-secondary,
.pricing-card .btn-primary {
    width: 100%;
}

.coaches-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.coach-card {
    display: flex;
    gap: 30px;
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    transition: all 0.3s ease;
}

.coach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.coach-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-light);
    flex-shrink: 0;
}

.coach-info h4 {
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.coach-specialty {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-style: italic;
}

.bubble-corner-decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: url('images/buble2.jpg');
    background-size: 100px 100px;
    z-index: -1;
}

/* ========== NEWSLETTER SECTION ========== */
#newsletter {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

#newsletter h2 {
    color: var(--text-light);
    margin-bottom: 20px;
}

#newsletter p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.newsletter-form .form-group {
    flex: 1;
    min-width: 200px;
}

.newsletter-form input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    padding: 15px 20px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
    padding: 15px 30px;
    background-color: var(--accent-color);
    min-width: 200px;
}

/* ========== CONTACT SECTION ========== */
#contact {
    background-color: var(--dark);
    color: var(--text-light);
    padding-bottom: 0;
}

.contact-wrap {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
}

.contact-info,
.contact-form {
    flex: 1;
}

#contact h2 {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item .icon {
    width: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.google-map {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--border-radius);
}

.contact-form h3 {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
}

.contact-form label {
    color: var(--primary-light);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form button {
    width: 100%;
    margin-top: 10px;
}

/* ========== FOOTER SECTION ========== */
#footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    position: relative;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 0;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
}

.footer-logo img {
    max-width: 180px;
}

.footer-links,
.footer-policy,
.footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-top h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-top ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-top ul li {
    margin-bottom: 10px;
}

.footer-top ul li a {
    color: var(--text-light);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-top ul li a:hover {
    opacity: 1;
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    transform: rotate(180deg);
}

/* ========== RESPONSIVE STYLES ========== */
@media screen and (max-width: 1200px) {
    :root {
        --section-spacing: 80px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .pricing-cards {
        flex-wrap: wrap;
    }
    
    .pricing-card {
        min-width: 280px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-15px);
    }
}

@media screen and (max-width: 992px) {
    :root {
        --section-spacing: 70px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--text-light);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.4s ease;
        padding: 30px 0;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    #hero h1 {
        font-size: 2.8rem;
    }
    
    .age-group, 
    .age-group.reverse {
        flex-direction: column;
        text-align: center;
    }
    
    .age-group-image {
        max-width: 100%;
    }
    
    .timeline-steps {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }
    
    .timeline-step {
        flex-direction: row;
        text-align: left;
        gap: 20px;
        width: 100%;
    }
    
    .timeline-track {
        display: none;
    }
    
    .contact-wrap {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --section-spacing: 60px;
    }
    
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .benefit-card {
        padding: 20px;
    }
    
    .weekday-labels {
        display: none;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-cell {
        padding: 15px;
        text-align: left;
        justify-content: flex-start;
    }
    
    .schedule-cell::before {
        position: static;
        margin-right: 10px;
        font-weight: 600;
    }
    
    .coach-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    :root {
        --section-spacing: 50px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .logo img {
        height: 35px;
    }
    
    #hero {
        min-height: 500px;
    }
    
    .pricing-card {
        min-width: 100%;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 30px;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

.pulse-animation {
    animation: pulse 3s ease-in-out infinite;
}

/* ========== POLICY PAGES STYLES ========== */
.policy-page {
    padding: 120px 0 60px;
}

.policy-content {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.policy-content h1 {
    margin-bottom: 30px;
}

.policy-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.policy-content p {
    margin-bottom: 15px;
}

.policy-content ul {
    margin-bottom: 20px;
}

.policy-content ul li {
    margin-bottom: 10px;
}

/* ========== SUCCESS PAGE STYLES ========== */
.success-page {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    padding: 20px;
}

.success-content {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 60px 40px;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon svg {
    width: 50px;
    height: 50px;
    fill: var(--text-light);
}

.success-content h1 {
    margin-bottom: 20px;
}

.success-content p {
    margin-bottom: 30px;
}

.return-home {
    display: inline-block;
}