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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

/* Color Variables */
:root {
    --primary-navy: #1e3a8a;
    --primary-orange: #ea580c;
    --steel-gray: #64748b;
    --light-gray: #f1f5f9;
    --dark-gray: #334155;
    --white: #ffffff;
    --border-color: #e2e8f0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-navy);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--steel-gray);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    font-weight: 700;
}

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

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

.nav-menu a:hover {
    color: var(--primary-orange);
}

.nav-cta {
    margin-left: 1rem;
    padding: 0.5rem 1rem !important;
    font-size: 0.9rem !important;
}

.nav-cta:hover {
    color: var(--white) !important;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-orange);
    color: var(--white);
}

.btn-primary:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
}

.btn-secondary:hover {
    background: var(--primary-navy);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero section button overrides for dark background */
.hero .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.hero .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-navy);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-gray) 100%);
    color: var(--white);
    padding: 8rem 0 6rem;
    margin-top: 70px;
    text-align: center;
}

.hero-title {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-intro {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e2e8f0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-navy);
}

/* About Section */
.about {
    background: var(--light-gray);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    margin-bottom: 2rem;
}

.about-intro {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--dark-gray);
}

.service-models {
    text-align: left;
}

.service-models h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-navy);
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--steel-gray);
    font-weight: 500;
    position: relative;
    padding-left: 1.5rem;
}

.service-list li:before {
    content: "▶";
    color: var(--primary-orange);
    position: absolute;
    left: 0;
}

/* Roles Section */
.roles {
    background: var(--white);
}

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

.role-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.role-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-orange);
}

.role-card h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.role-card p {
    color: var(--steel-gray);
    line-height: 1.7;
}

/* Value Section */
.value {
    background: var(--light-gray);
}

.value-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.benefit-item h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.benefit-item p {
    color: var(--steel-gray);
}

/* Newsletter Section */
.newsletter {
    background: var(--primary-navy);
    color: var(--white);
}

.newsletter .section-title {
    color: var(--white);
}

.newsletter-subhead {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #e2e8f0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Talent Request Section */
.talent-request {
    background: linear-gradient(135deg, var(--light-gray) 0%, #e2e8f0 100%);
    color: var(--dark-gray);
    position: relative;
    overflow: hidden;
}

.talent-request::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ea580c" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.talent-request .container {
    position: relative;
    z-index: 1;
}

.talent-request .section-title {
    color: var(--primary-navy);
}

.talent-subhead {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--steel-gray);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Forms */
.newsletter-form,
.contact-form,
.talent-form,
.apply-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--white);
    color: var(--dark-gray);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.newsletter-confirmation,
.contact-confirmation {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-top: 2rem;
}

.newsletter-confirmation h3,
.contact-confirmation h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.newsletter-confirmation p,
.contact-confirmation p {
    color: #e2e8f0;
}

/* Talent Apply Section */
.talent-apply {
    background: var(--white);
}

.apply-subhead {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--steel-gray);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.eligibility-notice {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.eligibility-notice h3 {
    color: #92400e;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.eligibility-notice p {
    color: #92400e;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.eligibility-notice p:last-child {
    margin-bottom: 0;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.checkbox-group .checkbox-label {
    margin-bottom: 0.5rem;
}

.checkbox-group .checkbox-label span {
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--steel-gray);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-confirmation {
    background: var(--light-gray);
    color: var(--dark-gray);
}

.contact-confirmation h3 {
    color: var(--primary-navy);
}

.contact-confirmation p {
    color: var(--steel-gray);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-links h3,
.footer-social h3,
.footer-legal h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-legal a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--primary-orange);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid #475569;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    margin: 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-navy);
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    background: var(--primary-orange);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
    background: var(--primary-orange);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem;
        width: 100%;
        color: var(--dark-gray);
        font-size: 1.1rem;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-cta {
        margin: 1rem auto 0 !important;
        max-width: 200px;
    }
    
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .roles-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-intro {
        font-size: 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .role-card,
    .benefit-item {
        padding: 1.5rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Confirmation Pages */
.confirmation-section {
    background: var(--light-gray);
    padding: 8rem 0 6rem;
    margin-top: 70px;
    text-align: center;
}

.confirmation-content {
    max-width: 800px;
    margin: 0 auto;
}

.confirmation-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.confirmation-title {
    color: var(--primary-navy);
    font-size: 3rem;
    margin-bottom: 2rem;
}

.confirmation-message {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.confirmation-info {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.confirmation-info p {
    margin-bottom: 0.5rem;
    color: var(--steel-gray);
}

.confirmation-info p:last-child {
    margin-bottom: 0;
}

.what-next {
    text-align: left;
    margin-bottom: 2rem;
}

.what-next h2 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    text-align: center;
}

.what-next ul {
    list-style: none;
    padding: 0;
}

.what-next li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--steel-gray);
}

.what-next li:last-child {
    border-bottom: none;
}

.confirmation-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Newsletter Benefits Section */
.newsletter-benefits {
    background: var(--white);
    padding: 5rem 0;
}

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

.newsletter-benefits .benefit-item {
    text-align: center;
    padding: 1.5rem;
}

/* Response Process Grid */
.response-info {
    background: var(--white);
    padding: 5rem 0;
}

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

.process-step {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--light-gray);
    border-radius: 12px;
    position: relative;
}

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

.process-step h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.process-step p {
    color: var(--steel-gray);
    margin: 0;
}

/* Emergency Contact Section */
.emergency-contact {
    background: var(--primary-navy);
    color: var(--white);
    padding: 4rem 0;
}

.emergency-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.emergency-info h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.emergency-info p {
    color: #e2e8f0;
    margin-bottom: 2rem;
}

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

.emergency-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.emergency-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.emergency-item span {
    color: #e2e8f0;
    font-size: 1.1rem;
}

/* Rate Limit Message */
.rate-limit-message {
    text-align: center;
    padding: 2rem;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid #ef4444;
    border-radius: 12px;
    color: #dc2626;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.rate-limit-message p {
    margin: 0;
    color: #dc2626;
}

/* Form Error Messages */
.form-errors {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid #ef4444;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 0 auto 2rem;
    max-width: 600px;
}

.form-errors h4 {
    color: #dc2626;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

.form-errors p {
    color: #dc2626;
    margin: 0;
    font-weight: 500;
}

.form-errors ul {
    margin: 0;
    padding-left: 1.5rem;
    color: #dc2626;
}

.form-errors li {
    margin-bottom: 0.5rem;
    color: #dc2626;
}

.form-errors li:last-child {
    margin-bottom: 0;
}

/* Enhanced Mobile Responsiveness for Confirmation Pages */
@media (max-width: 768px) {
    .confirmation-section {
        padding: 6rem 0 4rem;
    }
    
    .confirmation-title {
        font-size: 2rem;
    }
    
    .confirmation-message {
        font-size: 1.1rem;
    }
    
    .confirmation-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .confirmation-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-details {
        grid-template-columns: 1fr;
    }
    
    .newsletter-benefits .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .confirmation-section {
        padding: 4rem 0 3rem;
    }
    
    .confirmation-title {
        font-size: 1.8rem;
    }
    
    .confirmation-info {
        padding: 1rem;
    }
    
    .process-step {
        padding: 1.5rem 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus,
input:focus,
select:focus,
textarea:focus,
.nav-menu a:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

/* Legal Pages */
.legal-content {
    background: var(--white);
    padding: 8rem 0 6rem;
    margin-top: 70px;
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
}

.legal-header h1 {
    color: var(--primary-navy);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.last-updated {
    color: var(--steel-gray);
    font-style: italic;
    font-size: 1rem;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-text h2 {
    color: var(--primary-navy);
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-orange);
}

.legal-text h3 {
    color: var(--dark-gray);
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
}

.legal-text p {
    color: var(--steel-gray);
    margin-bottom: 1.2rem;
    text-align: justify;
}

.legal-text ul {
    margin: 1rem 0 1.5rem 2rem;
    color: var(--steel-gray);
}

.legal-text li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.legal-text strong {
    color: var(--dark-gray);
    font-weight: 600;
}

.legal-text a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 500;
}

.legal-text a:hover {
    text-decoration: underline;
}

.contact-info {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-orange);
    margin: 2rem 0;
}

.contact-info p {
    margin: 0;
    color: var(--dark-gray);
}

.contact-info a {
    color: var(--primary-orange);
    font-weight: 600;
}

/* Legal Pages Mobile Responsiveness */
@media (max-width: 768px) {
    .legal-content {
        padding: 6rem 0 4rem;
    }
    
    .legal-header h1 {
        font-size: 2.5rem;
    }
    
    .legal-text {
        padding: 0 1rem;
    }
    
    .legal-text h2 {
        font-size: 1.5rem;
        margin: 2rem 0 1rem 0;
    }
    
    .legal-text h3 {
        font-size: 1.2rem;
    }
    
    .legal-text ul {
        margin-left: 1.5rem;
    }
    
    .contact-info {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-text {
        padding: 0 0.5rem;
    }
    
    .legal-text h2 {
        font-size: 1.3rem;
    }
    
    .legal-text p {
        text-align: left;
    }
    
    .contact-info {
        padding: 1rem;
        border-radius: 8px;
    }
}
