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

:root {
    --dutch-orange: #FF6B35;
    --dutch-blue: #1E3A5F;
    --light-orange: #FFE5DB;
    --light-blue: #F0F4F8;
    --white: #FFFFFF;
    --gray-100: #F7FAFC;
    --gray-200: #EDF2F7;
    --gray-400: #A0AEC0;
    --gray-600: #718096;
    --gray-800: #2D3748;
    --text-primary: #2D3748;
    --text-secondary: #4A5568;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--white);
}

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

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--dutch-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--dutch-orange);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-links a.active {
    color: var(--dutch-orange);
    font-weight: 600;
}

.cta-button {
    background: linear-gradient(135deg, var(--dutch-orange), #FF8A50);
    color: var(--white);
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dutch-blue) 0%, #2C5282 100%);
    color: var(--white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--dutch-blue) 0%, #2C5282 100%);
    z-index: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

/* Temporary: Make first image visible by default for testing */
#hero-bg-1 {
    opacity: 1 !important;
}



.hero-background.active {
    opacity: 1;
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(30, 58, 95, 0.9) 0%, rgba(30, 58, 95, 0.7) 30%, rgba(44, 82, 130, 0.5) 70%, rgba(44, 82, 130, 0.3) 100%);
    z-index: 2;
}

.hero-dots {
    position: absolute;
    top: 0;
    right: -10%;
    width: 40%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23FF6B35" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    z-index: 2;
}

.hero-rotation-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-dot.active {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.indicator-dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text .highlight {
    color: var(--dutch-orange);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--dutch-orange), #FF8A50);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 15px 30px;
    border: 2px solid var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dutch-blue);
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-proof-text {
    opacity: 0.8;
    font-size: 0.9rem;
}

.university-logos {
    display: flex;
    gap: 15px;
    align-items: center;
}

.university-logo {
    width: 60px;
    height: 40px;
    background: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    color: var(--dutch-blue);
    opacity: 0.9;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--gray-100);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dutch-blue);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.benefit-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--dutch-orange);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--dutch-orange), #FF8A50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dutch-blue);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--dutch-blue), #2C5282);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dutch-blue);
    margin-bottom: 15px;
}

.step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Pricing */
.pricing {
    padding: 80px 0;
    background: var(--light-blue);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card.popular {
    border: 3px solid var(--dutch-orange);
    transform: scale(1.05);
}

.pricing-card.popular::before {
    content: 'Most Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dutch-orange);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dutch-blue);
    margin-bottom: 10px;
}

.plan-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dutch-orange);
    margin-bottom: 5px;
}

.plan-period {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.plan-tagline {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.plan-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--gray-200);
    text-align: left;
    padding-left: 20px;
}

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

.plan-features li::before {
    content: '✓';
    color: var(--dutch-orange);
    font-weight: bold;
    margin-right: 10px;
    margin-left: -20px;
}

.package-ref {
    color: var(--dutch-orange);
    font-weight: 700;
}

.plan-button {
    width: 100%;
    padding: 15px;
    background: var(--dutch-blue);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: auto;
}

.plan-button.popular {
    background: linear-gradient(135deg, var(--dutch-orange), #FF8A50);
}

.plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.pricing-notes {
    margin-top: 50px;
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--gray-200);
}

.pricing-notes p {
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.95rem;
}

/* Free Call Section */
.free-call {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dutch-orange), #FF8A50);
    color: var(--white);
    text-align: center;
}

.free-call h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.free-call p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.call-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.call-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.call-feature::before {
    content: '✓';
    font-size: 1.2rem;
    font-weight: bold;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
    padding: 25px 0;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dutch-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    margin-top: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.2s ease-out 0.1s;
    opacity: 0;
}

.faq-answer.active {
    opacity: 1;
}

.faq-question span {
    transition: transform 0.3s ease-out;
    display: inline-block;
}

.faq-question.active span {
    transform: rotate(45deg);
}

/* Footer */
.footer {
    background: var(--dutch-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    color: var(--dutch-orange);
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-section p {
    color: var(--gray-200);
    line-height: 1.4;
    margin-bottom: 8px;
}

.footer-section a {
    color: var(--gray-200);
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--dutch-orange);
}

.brand-subheading {
    color: var(--dutch-orange) !important;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px !important;
}

.footer-cta {
    display: inline-block;
    background: var(--dutch-orange);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.footer-cta:hover {
    background: #FF8A50;
    transform: translateY(-1px);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-left p {
    color: var(--gray-200);
    margin-bottom: 8px;
}

.legal-info {
    color: var(--gray-400);
    font-size: 0.9rem;
}

.footer-bottom-right {
    text-align: right;
}

.footer-links a {
    color: var(--gray-200);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--dutch-orange);
}

.trust-info {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-right {
        text-align: center;
    }
}

/* Policy Pages */
.policy-content {
    padding: 120px 0 80px;
    background: var(--white);
}

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

.policy-header {
    text-align: center;
    margin-bottom: 60px;
}

.policy-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dutch-blue);
    margin-bottom: 15px;
}

.policy-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dutch-blue);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--dutch-orange);
    padding-bottom: 10px;
}

.policy-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dutch-blue);
    margin: 25px 0 15px;
}

.policy-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
}

.policy-section ul {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 15px 0;
    padding-left: 20px;
}

.policy-section li {
    margin-bottom: 8px;
}

.last-updated {
    background: var(--gray-100);
    padding: 20px;
    border-radius: 10px;
    margin-top: 40px;
    text-align: center;
    color: var(--text-secondary);
}

.back-link {
    display: inline-block;
    margin-top: 40px;
    color: var(--dutch-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--dutch-blue);
}

.back-link::before {
    content: '← ';
    margin-right: 5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .benefits-grid,
    .pricing-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: none;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .free-call h2 {
        font-size: 2rem;
    }

    .policy-header h1 {
        font-size: 2.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
}

/* 404 Error Page Styles */
.error-hero {
    background: linear-gradient(135deg, var(--dutch-blue) 0%, #2C5282 100%);
    color: var(--white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.error-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--dutch-blue) 0%, #2C5282 100%);
    z-index: 0;
}

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

.error-number {
    font-size: 8rem;
    font-weight: bold;
    color: var(--dutch-orange);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.error-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.error-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--gray-200);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.error-help {
    background: linear-gradient(135deg, var(--light-blue) 0%, #E8F0F8 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.error-help::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="subtle-dots" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23FF6B35" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23subtle-dots)"/></svg>');
    z-index: 0;
}

.help-title {
    font-size: 2.5rem;
    color: var(--dutch-blue);
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.help-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--dutch-orange), #FF8A50);
    border-radius: 2px;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.help-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(30, 58, 95, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.help-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dutch-orange), #FF8A50);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.help-card:hover::before {
    transform: scaleX(1);
}

.help-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(30, 58, 95, 0.15);
    border-color: rgba(255, 107, 53, 0.2);
}

.help-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--dutch-orange), #FF8A50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.help-card:hover .help-card-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.help-card h3 {
    color: var(--dutch-blue);
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
}

.help-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.help-card .btn-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--dutch-blue), #2C5282);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.2);
}

.help-card .btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.3);
    background: linear-gradient(135deg, #2C5282, var(--dutch-blue));
}

.help-card .btn-action::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.help-card:hover .btn-action::after {
    transform: translateX(4px);
}

/* 404 Page Mobile Responsive */
@media (max-width: 768px) {
    .error-number {
        font-size: 6rem;
    }
    
    .error-title {
        font-size: 2rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .help-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 30px;
    }
    
    .help-card {
        padding: 30px 25px;
    }
    
    .help-title {
        font-size: 2rem;
    }
    
    .help-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}
