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

:root {
    --primary: #0a1128;
    --secondary: #001f54;
    --accent: #034078;
    --gold: #fdc500;
    --light-gold: #ffd60a;
    --dark: #000814;
    --light: #f8f9fa;
    --white: #fff
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden
}

body {
    font-family: Poppins, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 17, 40, .95);
    backdrop-filter: blur(20px);
    padding: 1.2rem 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .3);
    transition: all .3s ease
}

nav.scrolled {
    padding: .8rem 0
}

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

.logo {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 2px
}

.logo span {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(253, 197, 0, .5)
}

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

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease;
    font-size: .95rem;
    letter-spacing: 1px
}

.nav-links a:hover {
    color: var(--gold);
    transform: translateY(-2px)
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px
}

.burger span {
    width: 30px;
    height: 3px;
    background: var(--gold);
    transition: all .3s ease;
    border-radius: 3px
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 17, 40, .92), rgba(3, 64, 120, .88)), url(assets/gmbh-true-de-assets-3.jpeg) center/cover no-repeat fixed;
    z-index: 0
}

.logistics-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: .4;
    z-index: 0
}

.route-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(253, 197, 0, .8)
}

.route-node::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1
    }

    50% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0
    }
}

.delivery-package {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--light-gold);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 214, 10, .8)
}

.route-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(253, 197, 0, .3), transparent);
    transform-origin: left center
}

.hero-content {
    text-align: left;
    color: var(--white);
    z-index: 1;
    max-width: 1100px;
    padding: 2rem;
    animation: fadeInUp 1s ease
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero h1 {
    margin-top: 150px;
    font-size: 3.7rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, .5)
}

.hero h1 span {
    
    background: linear-gradient(120deg, var(--gold), var(--light-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero p {
    padding-top: 20px;
    font-size: 1rem;
    margin-bottom: 3rem;
    opacity: .95;
    font-weight: 200
}

.hero a {
        margin-top: 80px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--dark);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    transition: all .3s ease;
    box-shadow: 0 15px 40px rgba(253, 197, 0, .4);
    letter-spacing: 1px;
    white-space: nowrap;  /* Prevent text wrapping */

}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(253, 197, 0, .6)
}

.full-width-section {
    width: 100%;
    padding: 8rem 0
}

.section-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary);
    font-weight: 900;
    letter-spacing: -1px
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--light-gold));
    margin: 15px auto 0;
    border-radius: 3px
}

.section-subtitle {
    text-align: center;
    color: #7f8c8d;
    font-size: 1.3rem;
    margin-bottom: 5rem;
    font-weight: 400
}

.about {
    background: var(--light)
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center
}

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

.about-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
    transition: all .5s ease
}

.about-img:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .25)
}

.about-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease
}

.about-img:hover img {
    transform: scale(1.1)
}

.about-img.large {
    grid-column: span 2
}

.about-img.large img {
    height: 350px
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--primary);
    font-weight: 900
}

.about-text h2 span {
    background: linear-gradient(120deg, var(--accent), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.about-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #34495e;
    margin-bottom: 1.5rem
}

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

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: all .3s ease
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12)
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(120deg, var(--gold), var(--light-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.stat-label {
    font-size: .95rem;
    color: #7f8c8d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px
}

.services {
    background: var(--primary);
    position: relative;
    overflow: hidden
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(253,197,0,0.1)"/></svg>') repeat;
    opacity: .3
}

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

.services .section-subtitle {
    color: rgba(255, 255, 255, .8)
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1
}

.service-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .3);
    transition: all .5s ease;
    position: relative;
    border: 3px solid transparent
}

.service-card::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--gold), var(--light-gold), var(--gold));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity .4s ease
}

.service-card:hover::after {
    opacity: 1
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(253, 197, 0, .35)
}

.service-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    position: relative
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease
}

.service-card:hover .service-image img {
    transform: scale(1.12)
}

.service-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(253, 197, 0, .5);
    z-index: 2;
    border: 3px solid #fff
}

.service-overlay i {
    font-size: 2rem;
    color: var(--dark)
}

.service-content {
    padding: 2.5rem
}

.service-content h3 {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-weight: 800
}

.service-content ul {
    list-style: none
}

.service-content li {
    padding: .9rem 0;
    padding-left: 2.2rem;
    position: relative;
    color: #34495e;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, .06)
}

.service-content li:last-child {
    border-bottom: none;
   
}

.service-content li::before {
    content: '✓';
    padding-left: 5px;
    
    
    color: var(--gold);
    font-weight: 700;
    font-size: 1.3rem;
    top: 50%;
    transform: translateY(-50%)
}

.why-us {
    background: linear-gradient(135deg, rgba(10, 17, 40, .95), rgba(3, 64, 120, .92)), url(assets/why-us.jpg) center/cover fixed;
    color: var(--white)
}

.why-us .section-title, .why-us .section-subtitle {
    color: var(--white)
}

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

.benefit-card {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, .1);
    transition: all .4s ease
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(253, 197, 0, .3)
}

.benefit-icon {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700
}

.benefit-card p {
    font-size: 1rem;
    opacity: .9;
    line-height: 1.7
}

.industries {
    background: var(--light)
}

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

.industry-card {
    position: relative;
    height: 350px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
    transition: all .5s ease;
    cursor: pointer
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0, rgba(10, 17, 40, .9) 100%);
    z-index: 1
}

.industry-card:hover::before {
    background: linear-gradient(180deg, rgba(253, 197, 0, .3) 0, rgba(10, 17, 40, .95) 100%)
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.industry-card:hover img {
    transform: scale(1.15)
}

.industry-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    z-index: 2;
    color: var(--white)
}

.industry-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem
}

.industry-card h3 {
    font-size: 1.5rem;
    font-weight: 700
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(253, 197, 0, .3)
}

.vision-mission {
    background: var(--primary);
    color: var(--white)
}

.vision-mission .section-title, .vision-mission .section-subtitle {
    color: var(--white)
}

.vm-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-top: 4rem
}

.vm-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transition: all 0.5s ease;
    height: 500px;
    min-height: 400px; /* Ensure minimum height */
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 17, 40, 0.7) 0%, rgba(3, 64, 120, 0.9) 100%);
    z-index: 1;
}

.vm-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.vm-card:hover img {
    transform: scale(1.1)
}

.vm-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 3rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.vm-icon {
    font-size: 4rem;
    
    color: var(--gold);
    margin-bottom: 2rem
}

.vm-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.vm-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: .95
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(253, 197, 0, .4)
}

.contact {
    background: linear-gradient(135deg, rgba(10, 17, 40, .97), rgba(3, 64, 120, .95)), url(assets/tru-back-min.jpg) center/cover fixed;
    color: var(--white)
}

.contact .section-title, .contact .section-subtitle {
    color: var(--white)
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 4rem;
    align-items: center
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, .1);
    transition: all .3s ease
}

.contact-item:hover {
    transform: translateX(10px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(253, 197, 0, .3)
}

.contact-icon {
    font-size: 3rem;
    color: var(--gold);
    width: 80px;
    height: 80px;
    background: rgba(253, 197, 0, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.contact-text {
    flex: 1
}

.contact-label {
    font-size: .9rem;
    opacity: .8;
    margin-bottom: .3rem
}

.contact-value {
    font-size: 1.3rem;
    font-weight: 700
}

.contact-image {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5)
}

.contact-image img {
    width: 100%;
    height: 500px;
    object-fit: cover
}

footer {
    background: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 3rem 0
}

footer p {
    opacity: .8
}

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--light-gold));
    z-index: 9999;
    transition: width .1s ease;
    box-shadow: 0 0 20px rgba(253, 197, 0, .8)
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(253, 197, 0, .5)
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(253, 197, 0, .7)
}

.scroll-top i {
    font-size: 1.5rem;
    color: var(--dark)
}

@media (max-width:1024px) {
    .about-container, .vm-container, .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem
    }

    .services-grid {
        gap: 2rem
    }

    .service-image {
        height: 220px
    }

    .service-content {
        padding: 2rem
    }
}

@media (max-width:768px) {
    .burger {
        display: flex
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 75px;
        flex-direction: column;
        background: var(--primary);
        width: 100%;
        padding: 3rem 2rem;
        transition: right .3s ease;
        gap: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .5)
    }

    .nav-links.active {
        right: 0
    }

    .hero h1 {
        font-size: 2.2rem
    }

    .hero p {
        font-size: 1rem
    }

   

    .section-title {
        font-size: 2.2rem
    }

    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem
    }

    .full-width-section {
        padding: 5rem 0
    }

    .about-images {
        grid-template-columns: 1fr
    }

    .about-img.large {
        grid-column: span 1
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .service-card {
        border-radius: 20px;
        max-width: 500px;
        margin: 0 auto;
        width: 100%
    }

    .service-image {
        height: 200px
    }

    .service-overlay {
        width: 60px;
        height: 60px
    }

    .service-overlay i {
        font-size: 1.6rem
    }

    .service-content {
        padding: 1.8rem
    }

    .service-content h3 {
        font-size: 1.4rem
    }

    .service-content li {
        padding: .75rem 0;
        padding-left: 2rem;
        font-size: .95rem
    }

    .benefits-grid {
        gap: 1.5rem
    }

    .benefit-card {
        padding: 2rem
    }

    .industries-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .industry-card {
        height: 300px
    }

    .vm-card {
        height: 400px
    }

    .contact-image img {
        height: 300px
    }
}

@media (max-width:480px) {
    .hero h1 {
        font-size: 1.8rem
    }

    .hero p {
        font-size: .95rem
    }

    .section-title {
        font-size: 1.9rem
    }

    .full-width-section {
        padding: 4rem 0
    }

    .service-image {
        height: 180px
    }

    .service-content {
        padding: 1.5rem
    }

    .service-content h3 {
        font-size: 1.3rem
    }

    .service-content li {
        padding: .7rem 0;
        font-size: .9rem
    }

    .stat-number {
        font-size: 2.5rem
    }

    .scroll-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px
    }
}
/* RESPONSIVE BREAKPOINTS */
/* Large Tablets (1024px and below) */
@media (max-width: 1024px) {
    .cta-button {
        padding: 1.1rem 2.8rem;
        font-size: 0.95rem;
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
}

/* Mobile (600px and below) */
@media (max-width: 600px) {
    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.85rem;
        border-radius: 40px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .cta-button {
        padding: 0.85rem 1.8rem;
        font-size: 0.8rem;
        letter-spacing: 0.3px;
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.75rem;
        border-radius: 35px;
        white-space: normal;  /* Allow wrapping on very small screens if needed */
        max-width: 90%;  /* Prevent button from being too wide */
        text-align: center;
    }
}
/* Large Tablets and Small Desktops (1024px and below) */
@media (max-width: 1024px) {
    .vm-container {
        gap: 3rem;
    }

    .vm-card {
        height: 450px;
        min-height: 380px;
    }

    .vm-content {
        padding: 2.5rem;
    }

    .vm-icon {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }

    .vm-content h3 {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }

    .vm-content p {
        font-size: 1.1rem;
        line-height: 1.7;
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .vm-container {
        grid-template-columns: 1fr; /* Stack vertically */
        gap: 2.5rem;
    }

    .vm-card {
        height: 400px;
        min-height: 350px;
        max-width: 600px; /* Prevent cards from being too wide */
        margin: 0 auto;
        width: 100%;
    }

    .vm-content {
        padding: 2rem;
    }

    .vm-icon {
        font-size: 3rem;
        margin-bottom: 1.2rem;
    }

    .vm-content h3 {
        font-size: 1.9rem;
        margin-bottom: 1rem;
    }

    .vm-content p {
        font-size: 1.05rem;
        line-height: 1.6;
    }
}

/* Mobile Devices (480px and below) */
@media (max-width: 480px) {
    .vm-container {
        gap: 2rem;
    }

    .vm-card {
        height: 380px;
        min-height: 320px;
        border-radius: 20px; /* Slightly smaller radius for mobile */
    }

    .vm-content {
        padding: 1.5rem;
    }

    .vm-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .vm-content h3 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .vm-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* Extra Small Devices (360px and below) */
@media (max-width: 360px) {
    .vm-card {
        height: 350px;
        min-height: 300px;
    }

    .vm-content {
        padding: 1.2rem;
    }

    .vm-icon {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }

    .vm-content h3 {
        font-size: 1.4rem;
        margin-bottom: 0.7rem;
    }

    .vm-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}