/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #333333;
    --secondary-color: #666666;
    --text-color: #333;
    --light-text: #666666;
    --background: #ffffff;
    --card-bg: #f5f5f5;
    --paypal-blue: #003087;
    --wise-blue: #00B9FF;
    --background-color: #f8f9fa;
    --border-color: #e9ecef;
}

body {
    font-family: 'League Spartan', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background);
}

/* Header and Navigation */
header {
    background-color: var(--background);
    box-shadow: none;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eaeaea;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-color);
    letter-spacing: -1px;
    text-transform: lowercase;
}

.logo span {
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    transition: color 0.3s ease;
    font-size: 1rem;
    letter-spacing: -0.5px;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-color);
    padding: 0 1rem;
    margin-top: 0;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: -3px;
    line-height: 1;
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--light-text);
    line-height: 1.4;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.cta-button {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    background-color: var(--text-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--text-color);
    border-bottom: 2px solid var(--text-color);
    transform: rotate(45deg);
    animation: scrollAnimation 2s infinite;
    opacity: 0;
}

.scroll-arrow:nth-child(1) {
    animation-delay: 0s;
}

.scroll-arrow:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-arrow:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes scrollAnimation {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}

/* Responsive Design Improvements */
@media screen and (max-width: 1200px) {
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    nav {
        padding: 1rem 5%;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-links {
        position: fixed;
        right: 0;
        height: 92vh;
        top: 8vh;
        background-color: var(--background);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        padding-top: 2rem;
        gap: 2rem;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
        width: 100%;
        text-align: center;
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background-color: var(--card-bg);
    }

    .burger {
        display: block;
        z-index: 1001;
    }
    
    .burger div {
        width: 25px;
        height: 3px;
        background-color: var(--text-color);
        margin: 5px;
        transition: all 0.3s ease;
    }
    
    .burger.active div:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .burger.active div:nth-child(2) {
        opacity: 0;
    }
    
    .burger.active div:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .hero-content p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .services-grid,
    .pricing-grid,
    .packages-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card,
    .package-card {
        margin: 1rem 0;
    }

    .contact-form {
        padding: 1rem;
    }

    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-arrow {
        width: 15px;
        height: 15px;
    }
}

@media screen and (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .service-card,
    .pricing-card,
    .package-card {
        padding: 1.5rem;
    }
    
    .stats-grid {
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
}

/* Mobile Menu Toggle */
.burger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

@media screen and (max-width: 768px) {
    .burger {
        display: block;
    }
    
    .burger div {
        width: 25px;
        height: 3px;
        background-color: var(--text-color);
        margin: 5px;
        transition: all 0.3s ease;
    }
    
    .burger.active div:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .burger.active div:nth-child(2) {
        opacity: 0;
    }
    
    .burger.active div:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

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

.animate {
    animation: fadeIn 0.6s ease forwards;
}

/* Sections */
section {
    padding: 5rem 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--text-color);
    letter-spacing: -1px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 1rem;
    max-width: 1400px;
    margin: 0 auto;
    justify-items: center;
}

.service-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 300px;
    width: 100%;
    max-width: 350px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

.service-card p {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.6;
}

/* Pricing */
.pricing {
    background: var(--background);
    padding: 5rem 1rem;
}

.pricing-note {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 3rem;
    font-size: 1rem;
    font-weight: 300;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
}

.pricing-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-weight: 500;
    letter-spacing: -0.5px;
}

.price-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.price-subtitle {
    font-size: 1rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
}

.pricing-card li {
    margin-bottom: 0.5rem;
    color: var(--light-text);
    font-size: 1rem;
    font-weight: 300;
}

.pricing-cta {
    text-align: center;
    margin-top: 1rem;
    padding: 0.5rem 0;
}

.packages-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--text-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.packages-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--text-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .pricing-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .packages-button,
    .contact-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* Clients */
.clients {
    padding: 5rem 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.clients h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--text-color);
    letter-spacing: -1px;
}

.clients-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    background: var(--card-bg);
    border-radius: 4px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2rem;
    align-items: center;
}

.client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.client-logo img {
    max-width: 75%;
    height: auto;
    max-height: 150px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

/* Tablet View */
@media (max-width: 992px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .client-logo {
        padding: 1.5rem;
    }
    
    .client-logo img {
        max-height: 120px;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .clients {
        padding: 2rem 1rem;
    }
    
    .clients h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1rem;
        gap: 1rem;
        margin: 0 1rem;
    }
    
    .client-logo {
        padding: 1.5rem;
    }
    
    .client-logo img {
        max-height: 100px;
    }
}

/* Small Mobile View */
@media (max-width: 480px) {
    .clients {
        padding: 1.5rem 1rem;
    }
    
    .clients h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
        gap: 1rem;
        margin: 0 1rem;
    }
    
    .client-logo {
        padding: 1rem;
    }
    
    .client-logo img {
        max-height: 80px;
    }
}

/* Contact Form */
.contact-form,
.contact-form input,
.contact-form select,
.contact-form textarea,
.contact-form button {
    display: none;
}

/* Footer */
footer {
    background-color: var(--card-bg);
    color: var(--text-color);
    padding: 2rem 1rem;
    text-align: center;
    border-top: 1px solid #eaeaea;
}

.social-links {
    margin-bottom: 1rem;
}

.social-links a {
    color: var(--text-color);
    margin: 0 1rem;
    font-size: 1.8rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
}

/* Services section - add some padding to account for full-height hero */
#services {
    padding-top: 8rem;
}

/* Stats Section */
.stats {
    background: var(--background);
    padding: 2rem 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.stat-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-weight: 500;
    letter-spacing: -0.5px;
}

.stat-numbers p {
    color: var(--light-text);
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.stat-numbers p:first-child {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        padding: 0 1rem;
    }
}

/* Bundle Page Styles */
.packages {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.packages h1 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: var(--text-color);
    padding-top: 2rem;
}

.pricing-note {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card,
.quote-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: none;
    width: 100%;
    max-width: 350px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.package-card:hover,
.quote-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.package-card h3,
.quote-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-weight: 500;
    letter-spacing: -0.5px;
}

.package-card ul,
.quote-card ul {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
    flex-grow: 1;
}

.package-card ul li,
.quote-card ul li {
    margin-bottom: 0.5rem;
    color: var(--light-text);
    font-size: 1rem;
    font-weight: 300;
}

.packages-grid,
.quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.conditions {
    margin: 4rem 0;
}

.condition-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

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

.condition-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 10px;
}

.condition-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.condition-card ul {
    list-style: none;
    padding: 0;
}

.condition-card ul li {
    margin: 0.8rem 0;
    color: var(--text-secondary);
}

.pricing-cta {
    text-align: center;
    margin-top: 3rem;
}

.contact-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--text-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .packages {
        padding: 2rem 1rem;
    }

    .packages h1 {
        font-size: 2rem;
    }

    .price {
        font-size: 2rem;
    }
}

/* Update the quotes grid to match */
.quotes {
    background: var(--background);
    padding: 5rem 1rem;
}

.quotes h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--text-color);
    letter-spacing: -1px;
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.quote-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: none;
}

.quote-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.quote-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-weight: 500;
    letter-spacing: -0.5px;
}

.quote-card ul {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
}

.quote-card ul li {
    margin-bottom: 0.5rem;
    color: var(--light-text);
    font-size: 1rem;
    font-weight: 300;
}

.section-spacer {
    height: 4rem;
    background: var(--background);
}

@media screen and (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .service-card {
        min-height: auto;
        padding: 1.5rem;
    }
}

/* Payment Pages Styles */
.container.wise,
.container.paypal {
    max-width: 1000px;
    margin: 80px auto;
    padding: 2rem;
    background-color: var(--background);
}

.container.wise h2,
.container.paypal h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    text-align: center;
    font-weight: 500;
    letter-spacing: -1px;
}

.container.wise .intro,
.container.paypal .intro {
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.3rem;
    color: var(--light-text);
    line-height: 1.5;
}

.container.wise ol,
.container.paypal ol {
    list-style-position: inside;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
}

.container.wise li,
.container.paypal li {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--text-color);
    font-size: 1.2rem;
}

.container.wise img,
.container.paypal img {
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: block;
    min-height: 400px;
    object-fit: contain;
}

.container.wise .contact,
.container.paypal .contact {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eaeaea;
    color: var(--light-text);
    font-size: 1.1rem;
}

.container.wise a,
.container.paypal a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.container.wise a:hover,
.container.paypal a:hover {
    color: var(--secondary-color);
}

@media screen and (max-width: 768px) {
    .container.wise,
    .container.paypal {
        margin: 60px auto;
        padding: 1.5rem;
    }

    .container.wise h2,
    .container.paypal h2 {
        font-size: 2.2rem;
    }

    .container.wise .intro,
    .container.paypal .intro {
        font-size: 1.2rem;
    }

    .container.wise li,
    .container.paypal li {
        font-size: 1.1rem;
    }

    .container.wise img,
    .container.paypal img {
        min-height: 300px;
    }
}

/* Redirect Page Styles */
.redirect-message {
    text-align: center;
    padding: 40px 20px;
    max-width: 600px;
    margin: 50px auto;
}

.redirect-message h1 {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 2em;
}

.redirect-message p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1em;
    line-height: 1.6;
}

.redirect-message a {
    color: var(--paypal-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1em;
    padding: 12px 24px;
    border: 2px solid var(--paypal-blue);
    border-radius: 4px;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.redirect-message a:hover {
    background-color: var(--paypal-blue);
    color: white;
    text-decoration: none;
}

.countdown {
    font-size: 1.2em;
    color: var(--paypal-blue);
    font-weight: 500;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.loading {
    width: 20px;
    height: 20px;
    border: 3px solid var(--border-color);
    border-top-color: var(--paypal-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .redirect-message {
        padding: 30px 15px;
        margin: 30px auto;
    }
    .redirect-message h1 {
        font-size: 1.5em;
        margin-bottom: 15px;
    }
    .redirect-message p {
        font-size: 1em;
        margin-bottom: 25px;
    }
    .redirect-message a {
        font-size: 1em;
        padding: 10px 20px;
    }
    .countdown {
        font-size: 1.1em;
    }
    .loading {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .redirect-message {
        padding: 20px 10px;
        margin: 20px auto;
    }
    .redirect-message h1 {
        font-size: 1.3em;
        margin-bottom: 12px;
    }
    .redirect-message p {
        font-size: 0.95em;
        margin-bottom: 20px;
    }
    .redirect-message a {
        font-size: 0.95em;
        padding: 8px 16px;
    }
    .countdown {
        font-size: 1em;
    }
    .loading {
        width: 14px;
        height: 14px;
    }
}