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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #000000;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: #EFEAFD;
    padding: 0px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Inter', sans-serif;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 100px;
    height: 100px;
}

.logo-placeholder {
    width: 100%;
    height: 100%;
    background: url('images/anh-dao-logo.png') no-repeat center center;
    background-size: contain;
    /* Placeholder for actual logo */
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    font-family: 'Inter', sans-serif;
}

.navigation {
    display: flex;
    align-items: center;
}

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

.nav-link {
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.nav-link:hover {
    color: #5840BB;
}

.nav-link.active {
    color: #5840BB;
    font-weight: 600;
}

.language-switcher {
    display: flex;
    align-items: center;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #5840BB;
    border-radius: 20px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #5840BB;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-family: 'Inter', sans-serif;
}

.lang-btn:hover {
    border-color: #5840BB;
    color: #5840BB;
}

.arrow-down {
    transition: transform 0.3s ease;
}

.lang-btn:hover .arrow-down {
    transform: rotate(180deg);
}

/* Hero Section Styles */
.hero {
    background: linear-gradient(135deg, #EFEAFD 0%, #E4DAFF 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Removed hero::before to eliminate white overlay */

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

.hero-text {
    max-width: 500px;
}

.tagline {
    margin-bottom: 32px;
}

.tag-text {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #5840BB;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #5840BB;
    box-shadow: 0 2px 8px rgba(88, 64, 187, 0.1);
}

.hero-title {
    margin-bottom: 32px;
    line-height: 1.2;
}

.title-main {
    font-size: 62px;
    font-weight: 700;
    color: #000000;
    display: block;
}

.title-highlight {
    font-size: 62px;
    font-weight: 700;
    color: #5840BB;
    display: block;
    text-decoration: underline;
    text-underline-offset: 8px;
}

.hero-description {
    font-size: 18px;
    color: #000000;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(88, 64, 187, 0.15);
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: #5840BB;
    color: #ffffff;
}

.btn-primary:hover {
    background: #4a3699;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #5840BB;
    border-color: #5840BB;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #5840BB;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Hero Graphics */
.hero-graphics {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 450px;
    height: 450px;
    background: transparent;
}

.hero-right-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(88, 64, 187, 0.15);
    transition: transform 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-right-image:hover {
    transform: scale(1.02);
}

/* About Us Section */
.about {
    padding: 80px 0;
    background: #ffffff;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Top Section - About Overview */
.about-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-graphics {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.about-3d-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 20px;
}

.about-text {
    max-width: 500px;
}

.about-label {
    margin-bottom: 24px;
}

.label-text {
    display: inline-block;
    background: #5840BB;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.about-title {
    font-size: 52px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-description {
    font-size: 18px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Bottom Section - Key Features */
.about-features {
    position: relative;
    padding: 60px 0;
}

.features-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.center-circle {
    width: 80px;
    height: 80px;
    background: #5840BB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(88, 64, 187, 0.3);
}

.center-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 120px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.feature-item {
    text-align: center;
    max-width: 200px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon-img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 16px;
    color: #666666;
    line-height: 1.5;
}

/* Feature positioning */
.feature-top-left {
    justify-self: start;
    align-self: start;
    margin-left: 100px;
}

.feature-top-right {
    justify-self: end;
    align-self: start;
    margin-right: 100px;
}

.feature-bottom-left {
    justify-self: start;
    align-self: end;
    margin-left: 100px;
}

.feature-bottom-right {
    justify-self: end;
    align-self: end;
    margin-right: 100px;
}

/* Connecting lines */
.features-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 2px;
    background: #e0e0e0;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.features-grid::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 600px;
    background: #e0e0e0;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Background patterns */
.services::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(88, 64, 187, 0.05) 0%, transparent 50%);
    border-radius: 20px;
    z-index: 1;
}

.services::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, transparent 0%, rgba(88, 64, 187, 0.05) 50%);
    border-radius: 20px;
    z-index: 1;
}

.services-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Services Header */
.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-label {
    margin-bottom: 24px;
}

.services-label .label-text {
    display: inline-block;
    background: #F8F7FE;
    color: #5840BB;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #C5C0DB;
}

.services-title {
    font-size: 52px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 24px;
    line-height: 1.2;
}

.services-subtitle {
    font-size: 18px;
    color: #000000;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(135deg, #F8F7FE 0%, #C5C0DB 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(88, 64, 187, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(88, 64, 187, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.service-icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-description {
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.testimonials-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Testimonials Header */
.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-label {
    margin-bottom: 24px;
}

.testimonials-label .label-text {
    display: inline-block;
    background: #F8F7FE;
    color: #5840BB;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #C5C0DB;
}

.testimonials-title {
    font-size: 52px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0;
    line-height: 1.2;
}

/* Testimonials Carousel */
.testimonials-carousel {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #5840BB;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 64, 187, 0.3);
}

.carousel-btn:hover {
    background: #4a359e;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(88, 64, 187, 0.4);
}

.carousel-btn-left {
    left: 20px;
}

.carousel-btn-right {
    right: 20px;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    animation: scroll 60s linear infinite;
    width: max-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Testimonial Card */
.testimonial-card {
    background: linear-gradient(135deg, #F8F7FE 0%, #C5C0DB 100%);
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(88, 64, 187, 0.1);
    min-width: 350px;
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(88, 64, 187, 0.15);
}

/* Rating Stars */
.rating {
    display: flex;
    gap: 2px;
    margin-bottom: 20px;
}

.star-icon {
    width: 18px;
    height: 18px;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

/* Client Info */
.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #5840BB;
}

.client-details {
    flex: 1;
}

.client-name {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 4px;
}

.client-role {
    font-size: 14px;
    color: #666666;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: radial-gradient(ellipse at center, #F8F7FE 0%, #E9E3FE 100%);
    position: relative;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Header */
.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title {
    font-size: 52px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 18px;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Contact Information */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-img {
    width: 75px;
    height: 75px;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.contact-text {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Contact Form */
.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(88, 64, 187, 0.1);
}

.form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.form-input,
.form-textarea {
    padding: 16px 20px;
    border: 2px solid #E4DAFF;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    background: #F8F7FE;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #5840BB;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(88, 64, 187, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999999;
}

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

.form-submit {
    background: #5840BB;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.form-submit:hover {
    background: #4a359e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(88, 64, 187, 0.3);
}

/* Other sections */

/* Footer Section */
.footer {
    background: #050117;
    padding: 60px 0 30px;
    color: #ffffff;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 40px;
}

/* Footer Left - Logo and Description */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo-icon {
    width: 120px;
    height: 120px;
}

.footer-logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}



.footer-description {
    font-size: 16px;
    color: #CCCCCC;
    line-height: 1.6;
    max-width: 400px;
    margin: 0;
}

/* Footer Right - Navigation */
.footer-right {
    display: flex;
    justify-content: flex-end;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-nav-link {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav-link:hover {
    color: #5840BB;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 30px;
    text-align: center;
}

.company-name {
    font-size: 14px;
    color: #999999;
    margin: 0;
    font-weight: 500;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .header {
        padding: 6px 0;
    }
    
    .nav-list {
        display: none; /* Mobile menu will be implemented later */
    }
    
    .logo-icon {
        width: 90px;
        height: 90px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .title-main, .title-highlight {
        font-size: 42px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .tag-text {
        font-size: 14px;
        padding: 8px 16px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .hero-image {
        width: 350px;
        height: 350px;
    }
    
    .about, .services, .testimonials, .contact {
        padding: 60px 0;
    }
    
    .about-overview {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-image-placeholder {
        width: 300px;
        height: 300px;
    }
    
    .about-title {
        font-size: 42px;
    }
    
    .center-icon {
        width: 40px;
        height: 40px;
    }
    
    .features-grid {
        gap: 60px;
        max-width: 800px;
    }
    
    .feature-item {
        max-width: 180px;
    }
    
    .feature-icon-img {
        width: 60px;
        height: 60px;
    }
    
    .feature-top-left,
    .feature-top-right,
    .feature-bottom-left,
    .feature-bottom-right {
        margin-left: 20px;
        margin-right: 20px;
    }
    
    .services-title {
        font-size: 42px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 600px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon-img {
        width: 50px;
        height: 50px;
    }
    
    .testimonials h2, .contact h2 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .title-main, .title-highlight {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .tag-text {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .hero-image {
        width: 300px;
        height: 300px;
    }
    
    .about-overview {
        gap: 30px;
    }
    
    .about-image-placeholder {
        width: 250px;
        height: 250px;
    }
    
    .about-title {
        font-size: 36px;
    }
    
    .center-icon {
        width: 36px;
        height: 36px;
    }
    
    .features-grid {
        gap: 40px;
        max-width: 600px;
    }
    
    .feature-item {
        max-width: 150px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-description {
        font-size: 14px;
    }
    
    .feature-icon-img {
        width: 54px;
        height: 54px;
    }
    
    .feature-top-left,
    .feature-top-right,
    .feature-bottom-left,
    .feature-bottom-right {
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .services-title {
        font-size: 36px;
    }
    
    .services-grid {
        gap: 20px;
        max-width: 500px;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .service-icon-img {
        width: 45px;
        height: 45px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .service-description {
        font-size: 14px;
    }

    .testimonials-title {
        font-size: 42px;
    }
    
    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
        padding: 25px 20px;
    }
    
    .testimonials-track {
        gap: 20px;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
    }
    
    .carousel-btn-left {
        left: 15px;
    }
    
    .carousel-btn-right {
        right: 15px;
    }
    
    .contact-title {
        font-size: 36px;
    }
    
    .contact-subtitle {
        font-size: 16px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        gap: 30px;
    }
    
    .contact-item {
        gap: 15px;
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
    }
    
    .contact-icon-img {
        width: 60px;
        height: 60px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .form-input,
    .form-textarea {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .form-submit {
        padding: 14px 28px;
        font-size: 16px;
        width: 100%;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-right {
        justify-content: center;
    }
    
    .footer-nav-list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .footer-logo-icon {
        width: 90px;
        height: 90px;
    }
    
    .footer-logo-img {
        width: 90px;
        height: 90px;
    }
    

    
    .footer-description {
        max-width: 100%;
        font-size: 14px;
    }
    
    .footer-nav-link {
        font-size: 14px;
    }
    
    .company-name {
        font-size: 12px;
    }
}
