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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: #f8f9fa;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

.navbar {
    background: #ffffff;
    padding: 0;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid #FFC107;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}


.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.5rem;
    background-color: #FFC107;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 193, 7, 0.4);
}

.logo img {
    height: 35px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    background-color: #f5f5f5;
    padding: 0.5rem;
    border-radius: 50px;
}

.nav-menu a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
}

.nav-menu a.active {
    background-color: #FFC107;
    color: #1a1a1a;
    font-weight: 600;
}


.nav-menu a:hover {
    background-color: rgba(255, 193, 7, 0.2);
    color: #FFC107;
}

.nav-menu a.dropdown {
    display: flex;
    align-items: center;
}

.cta-button {
    background-color: #FFC107;
    color: #1a1a1a;
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    background-color: #FFD54F;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5);
}

.hero-section {
    background-color: #f5f5f5;
    padding: 2rem 0 0;
    min-height: 600px;
    overflow: hidden;
    position: relative;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    background-color: #e8e5d9;
    padding: 3rem;
    border-radius: 12px;
    max-width: 450px;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-button {
    background-color: #1a1a1a;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2.5rem;
    text-decoration: none;
    display: inline-block;
}

.hero-button:hover {
    background-color: #2d3e2d;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.freight-tracking {
    margin-top: 2rem;
}

.freight-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.tracking-form {
    display: flex;
    max-width: 100%;
}

.tracking-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-right: none;
    border-radius: 6px 0 0 6px;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
    background-color: white;
}

.tracking-input:focus {
    border-color: #2d3e2d;
    box-shadow: 0 0 0 3px rgba(45, 62, 45, 0.1);
}

.tracking-input::placeholder {
    color: #9ca3af;
}

.track-button {
    background-color: #FFC107;
    color: #1a1a1a;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0 6px 6px 0;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.track-button svg {
    flex-shrink: 0;
}

.track-button:hover {
    background-color: #FFD54F;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.hero-visual {
    position: relative;
    height: 600px;
    overflow: visible;
}

.yellow-road {
    position: absolute;
    top: -50px;
    right: -200px;
    width: 150%;
    height: 700px;
    background: linear-gradient(135deg, #FFC107 0%, #FFD54F 100%);
    transform: skewY(-10deg);
    z-index: 1;
    box-shadow: 0 10px 40px rgba(255, 193, 7, 0.3);
}

.isometric-scene {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.animated-truck {
    position: absolute;
    width: 200px;
    height: 100px;
    top: 150px;
    left: -50px;
    z-index: 10;
    animation: moveTruck 8s linear infinite;
}

@keyframes moveTruck {
    0% {
        left: -50px;
        top: 150px;
    }
    50% {
        left: 60%;
        top: 50px;
    }
    100% {
        left: 110%;
        top: -50px;
    }
}

.container-stack {
    position: absolute;
    background-color: #e0e0e0;
    border: 2px solid #999;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
}

.container-1 {
    width: 120px;
    height: 80px;
    top: 200px;
    right: 50px;
    background-color: #d0d0d0;
}

.container-1::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 8px,
        #999 8px,
        #999 10px
    );
}

.container-2 {
    width: 140px;
    height: 100px;
    top: 100px;
    right: 200px;
    background-color: #f0f0f0;
}

.container-2::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 8px,
        #999 8px,
        #999 10px
    );
}

.container-3 {
    width: 100px;
    height: 60px;
    top: 350px;
    right: 250px;
    background-color: #FFC107;
}

.container-3::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 8px,
        #333 8px,
        #333 10px
    );
}

.container-4 {
    width: 160px;
    height: 90px;
    top: 280px;
    right: 400px;
    background-color: #e0e0e0;
}

.container-4::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 8px,
        #999 8px,
        #999 10px
    );
}

.container-5 {
    width: 130px;
    height: 70px;
    top: 50px;
    right: 350px;
    background-color: #FFC107;
}

.container-5::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 8px,
        #333 8px,
        #333 10px
    );
}

.trusted-section {
    background-color: #ffffff;
    padding: 3rem 0;
    border-top: 1px solid #e5e7eb;
}

.trusted-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.trusted-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.trusted-logos {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.logo-item:hover {
    transform: translateY(-3px);
}

.logo-icon {
    color: #1a1a1a;
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
}


.services-section {
    background-color: #f5f5f5;
    padding: 5rem 0;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

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

.services-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.services-subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
}

.service-card:nth-child(odd) {
    background-color: #e8e5d9;
}

.service-card:nth-child(even) {
    background: linear-gradient(135deg, #FFC107 0%, #FFD54F 100%);
}

.service-card:nth-child(even) .service-name,
.service-card:nth-child(even) .service-description {
    color: #1a1a1a;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-card:nth-child(even) .service-icon {
    background-color: #1a1a1a;
}

.service-card:nth-child(even) .service-icon svg {
    color: #FFC107;
}

.service-card:hover .service-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-icon svg {
    color: #1a1a1a;
}

.service-content {
    flex: 1;
}

.service-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.service-description {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
}

.about-section {
    background-color: #f5f5f5;
    color: #1a1a1a;
    padding: 5rem 0;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #FFC107;
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #1a1a1a;
}

.feature-icon {
    color: #FFC107;
    flex-shrink: 0;
}

.about-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 1rem;
}

.about-button {
    background-color: #FFC107;
    color: #1a1a1a;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-button:hover {
    background-color: #FFD54F;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 193, 7, 0.3);
}

.about-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    background-color: #e8e5d9;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.about-phone:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 229, 217, 0.5);
    background-color: #FFC107;
}

.about-phone svg {
    color: #1a1a1a;
}

.about-image {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-container-image {
    width: 100%;
    height: 100%;
    background-image: url('container.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.stats-section {
    background-color: #0f172a;
    padding: 3rem 0;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.stats-subtitle {
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    color: #94a3b8;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFC107;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-plus {
    color: #FFC107;
    font-size: 2.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.contact-section {
    background-color: #f5f5f5;
    padding: 5rem 0;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

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

.contact-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: #e8e5d9;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-info-item:hover {
    background-color: #FFC107;
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #FFC107;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon {
    transform: rotate(5deg) scale(1.1);
    background-color: #1a1a1a;
}

.contact-icon svg {
    color: #1a1a1a;
}

.contact-info-item:hover .contact-icon svg {
    color: #FFC107;
}

.contact-info-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.contact-info-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.contact-info-content a {
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-info-content a:hover {
    color: #FFC107;
    text-decoration: underline;
}

.contact-form-wrapper {
    background-color: #e8e5d9;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(232, 229, 217, 0.3);
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1.25rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #ffffff;
    color: #1a1a1a;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #FFC107;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background-color: #ffffff;
    color: #1a1a1a;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    grid-column: span 2;
    background-color: #FFC107;
    color: #1a1a1a;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.submit-button:hover {
    background-color: #FFD54F;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 193, 7, 0.4);
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 0 2rem;
    margin-top: 0;
    border-top: 4px solid #FFC107;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FFC107;
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d1d5db;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-text a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-text a:hover {
    color: #FFC107;
    transform: translateX(3px);
    text-decoration: underline;
}

.footer-icon {
    flex-shrink: 0;
    margin-top: 0.2rem;
    color: #FFC107;
}

.footer-uen {
    font-size: 0.9rem;
    color: #d1d5db;
    margin-top: 0.5rem;
}

.footer-uen strong {
    color: #FFC107;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
    color: #d1d5db;
    font-size: 0.875rem;
}

.footer-bottom p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-bottom p::before {
    content: '';
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFC107);
}

.footer-bottom p::after {
    content: '';
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #FFC107, transparent);
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image {
        height: 350px;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .yellow-road {
        right: -100px;
        height: 500px;
    }
    
    .animated-truck {
        width: 150px;
        height: 75px;
    }
    
    .trusted-logos {
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .services-title {
        font-size: 2.25rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-title {
        font-size: 2.25rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-title {
        font-size: 2.25rem;
    }
    
    .about-image {
        height: 300px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-plus {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .truck-icon {
        font-size: 2rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .tracking-form {
        flex-direction: column;
    }
    
    .tracking-input {
        border-right: 1px solid #d1d5db;
        border-radius: 6px;
    }
    
    .track-button {
        border-radius: 6px;
    }
    
    .nav-container,
    .hero-container,
    .trusted-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .trusted-logos {
        gap: 1.5rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .yellow-road {
        right: -50px;
        height: 400px;
    }
    
    .animated-truck {
        width: 120px;
        height: 60px;
    }
    
    .container-stack {
        transform: scale(0.7);
    }
    
    .services-container,
    .contact-container,
    .about-container,
    .stats-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-title {
        font-size: 1.75rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-title {
        font-size: 1.75rem;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .submit-button {
        grid-column: span 1;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .about-title {
        font-size: 1.75rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .about-button,
    .about-phone {
        width: 100%;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-plus {
        font-size: 1.5rem;
    }
}
