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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

/* Header Section - Light Background */
.header-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    min-height: auto;
    position: relative;
    padding: 2rem 4rem 4rem;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(30, 58, 138, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 58, 138, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Navigation */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
    width: 100%;
    margin-left: 0;
    padding-left: 0;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-left: 0;
    padding-left: 0;
    gap: 0;
    position: relative;
    left: 0;
    width: auto;
}

.logo-img {
    height: 100px;
    width: auto;
    max-width: 400px;
    min-width: 300px;
    margin-right: 0;
    padding-right: 0;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: -0.2rem;
    padding-left: 0;
    margin-right: 0;
}

.logo-name {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    line-height: 1.1;
}

.logo-luxie {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a;
    letter-spacing: 2px;
}

.logo-distribution {
    font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
    font-size: 2rem;
    font-weight: 600;
    font-style: italic;
    color: #2a2a2a;
    letter-spacing: 1px;
}

.logo-usa {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: #1e3a8a;
    letter-spacing: 2px;
}

.logo-tagline {
    font-family: Georgia, serif;
    font-size: 0.7rem;
    font-style: italic;
    color: #666666;
    letter-spacing: 1px;
    margin-top: 0.1rem;
}

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

.nav-links a {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

/* Hero Content */
.hero-content {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4rem;
    flex: 1;
    position: relative;
    z-index: 10;
    margin-left: 0;
    padding-left: 0;
    width: 100%;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-left: 0;
    padding-left: 0;
    align-self: flex-start;
    width: auto;
}

.hero-text .cta-button {
    margin-top: 0;
    margin-left: 0;
    align-self: flex-start;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-align: left;
    width: 100%;
    margin-left: 0;
    padding-left: 0;
    text-indent: 0;
}

.cta-button {
    background: rgba(255, 255, 255, 0.9);
    color: #1e3a8a;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: inline-block;
    margin-left: 0;
    align-self: flex-start;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
}


/* Hero Graphics */
.hero-graphics {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    max-width: 600px;
}

.hero-graphics .hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: contain;
}

.graphic-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s;
}

.graphic-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.card-1 {
    transform: perspective(1000px) rotateY(-8deg) rotateX(8deg);
}

.card-2 {
    margin-left: 2rem;
}

.card-3 {
    margin-left: 1rem;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #333;
}

.checkmark {
    color: #10B981;
    font-size: 1.2rem;
    font-weight: bold;
}

.location-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.location-item {
    font-size: 0.9rem;
    color: #666;
}

.location-item .label {
    font-weight: 600;
    margin-right: 0.5rem;
}

.products {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.product-box {
    background: #F3F4F6;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
}

.card-label {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.card-content {
    margin-bottom: 1rem;
}

.info-line {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.card-button {
    background: #1e3a8a;
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

/* About Section - Light Gray */
.about-section {
    background: #F9FAFB;
    padding: 6rem 4rem;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: flex-start;
}

.about-illustration .hero-graphics {
    width: 100%;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-illustration .hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: contain;
}


.text-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.content-section {
    margin-bottom: 2rem;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1rem;
    text-align: left;
}

.content-section p {
    font-size: 1.1rem;
    color: #4B5563;
    line-height: 1.8;
}

.cta-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #E5E7EB;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.cta-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1.5rem;
}

.cta-button-secondary {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e40af 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
}

/* About Illustration */
.about-illustration {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 3rem;
    gap: 0;
}

.about-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: contain;
}

.warehouse-scene {
    position: relative;
    width: 100%;
    height: 100%;
    transform: perspective(800px) rotateY(-15deg) rotateX(10deg);
}

.warehouse-shelves {
    display: flex;
    gap: 2rem;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.shelf {
    flex: 1;
    height: 300px;
    background: linear-gradient(to bottom, #D97706 0%, #92400E 100%);
    border-radius: 8px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.shelf::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: #92400E;
    border-radius: 8px 8px 0 0;
}

.shelf-1 {
    transform: translateX(-20px);
}

.shelf-3 {
    transform: translateX(20px);
}

.warehouse-workers {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.worker {
    position: absolute;
    bottom: 300px;
}

.worker-body {
    width: 40px;
    height: 60px;
    background: #3B82F6;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.worker-body::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 25px;
    background: #FBBF24;
    border-radius: 50%;
}

.worker-1 {
    left: 10%;
    transform: translateX(-50px);
}

.worker-2 {
    left: 50%;
    transform: translateX(-20px);
}

.worker-3 {
    right: 15%;
}

.worker-cart {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 40px;
    background: #6B7280;
    border-radius: 4px;
}

.worker-scanner {
    position: absolute;
    top: 10px;
    right: -20px;
    width: 30px;
    height: 30px;
    background: #10B981;
    border-radius: 4px;
}

.warehouse-screens {
    position: absolute;
    top: 100px;
    width: 100%;
}

.screen {
    position: absolute;
    background: #1F2937;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.screen-1 {
    left: 30%;
    font-size: 1.5rem;
}

.screen-2 {
    right: 20%;
    font-size: 0.9rem;
}

.screen-item {
    margin-bottom: 0.3rem;
}

.warehouse-logo {
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    font-weight: bold;
    color: rgba(30, 58, 138, 0.3);
    z-index: 5;
}

/* Footer Section - Blue */
.footer-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e40af 100%);
    padding: 5rem 2rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.footer-heading {
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
    animation: fadeInUp 0.8s ease-out;
}

.footer-heading::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.footer-copyright {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 0;
}

.footer-copyright span {
    font-weight: 700;
    color: white;
}

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

/* Contact Page Styles */
.contact-header {
    min-height: auto;
    padding-bottom: 0;
}

.contact-hero {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 0;
    position: relative;
    z-index: 10;
    padding-bottom: 2rem;
}

.about-header {
    min-height: auto;
    padding-bottom: 2rem;
}

.services-header {
    min-height: auto;
    padding-bottom: 3rem;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.contact-hero p {
    font-size: 1.5rem;
    color: #1e3a8a;
    max-width: 700px;
    margin: 1rem auto 0;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.3px;
    font-style: italic;
}

.about-content-section {
    background: #F9FAFB;
    padding: 3rem 4rem 6rem;
    margin-top: 0;
}

.about-content-container {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 1rem;
}

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

.about-content-text p {
    font-size: 1.15rem;
    color: #4B5563;
    line-height: 1.9;
    text-align: left;
}

/* Services Page Styles */
.services-content-section {
    background: #F9FAFB;
    padding: 2rem 4rem 6rem;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.services-content-container {
    max-width: 1000px;
    margin: 0 auto;
}

.services-image-wrapper {
    width: 100%;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: contain;
}

.services-main-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.service-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.service-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e40af 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-content p {
    font-size: 1.1rem;
    color: #4B5563;
    line-height: 1.8;
    text-align: left;
}

.why-choose-section {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-top: 3rem;
}

.why-choose-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 2rem;
    text-align: left;
}

.why-choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.why-choose-list li {
    font-size: 1.1rem;
    color: #4B5563;
    line-height: 1.6;
    padding-left: 2rem;
    position: relative;
}

.why-choose-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: 700;
    font-size: 1.2rem;
}

.contact-section {
    background: #F9FAFB;
    padding: 2rem 4rem 6rem;
    margin-top: 0;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-form-wrapper {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #FAFAFA;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
    background: white;
}

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

.submit-button {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e40af 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.submit-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.loader {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.95rem;
    text-align: center;
}

.form-message.success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #10B981;
}

.form-message.error {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #EF4444;
}

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

.info-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: #6B7280;
    line-height: 1.6;
}

.nav-links a.active {
    opacity: 1;
    font-weight: 600;
    border-bottom: 2px solid #1e3a8a;
    padding-bottom: 0.25rem;
}

.cta-button {
    text-decoration: none;
    display: inline-block;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .about-illustration .hero-graphics {
        margin-top: 1.5rem;
    }

    .about-illustration .hero-image {
        max-width: 100%;
        width: 100%;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .header-section {
        padding: 1rem 1.5rem;
        min-height: auto;
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .logo {
        width: 100%;
    }

    .logo-img {
        height: 60px;
        min-width: 200px;
        max-width: 250px;
    }
    
    .logo-luxie,
    .logo-distribution,
    .logo-usa {
        font-size: 1.2rem;
    }
    
    .logo-usa {
        font-size: 1.1rem;
    }
    
    .logo-tagline {
        font-size: 0.55rem;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 0.85rem;
        width: 100%;
        justify-content: flex-start;
    }

    .nav-links li {
        flex: 0 0 auto;
    }

    .hero-content {
        gap: 2rem;
        margin-top: 1rem;
    }

    .hero-text {
        width: 100%;
    }

    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .hero-graphics {
        display: none;
    }

    .about-section {
        padding: 3rem 1.5rem;
    }

    .about-container {
        gap: 2rem;
    }

    .about-illustration .hero-graphics {
        margin-top: 1.5rem;
    }

    .about-illustration .hero-image {
        border-radius: 8px;
        max-width: 100%;
    }

    .content-section {
        margin-bottom: 1.5rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .content-section p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .cta-section {
        margin-top: 3rem;
        padding-top: 2rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .cta-button-secondary {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .footer-section {
        padding: 3rem 1.5rem 2rem;
    }

    .footer-content {
        max-width: 100%;
        padding: 0;
    }

    .footer-heading {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
        line-height: 1.3;
    }

    .footer-heading::after {
        width: 60px;
        margin: 1rem auto 0;
    }
    
    .footer-copyright {
        margin-top: 2rem;
        padding-top: 1.5rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .footer-copyright p {
        font-size: 0.95rem;
    }

    .about-content-section {
        padding: 4rem 2rem;
    }
    
    .about-content-text p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .services-content-section {
        padding: 4rem 2rem;
    }

    .services-image-wrapper {
        margin-bottom: 2rem;
    }

    .services-image {
        max-width: 100%;
        width: 100%;
    }

    .service-item {
        flex-direction: column;
        gap: 1.5rem;
    }

    .service-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .service-content h2 {
        font-size: 1.5rem;
    }

    .service-content p {
        font-size: 1rem;
    }

    .why-choose-section {
        padding: 2rem;
    }

    .why-choose-heading {
        font-size: 1.75rem;
    }

    .why-choose-list li {
        font-size: 1rem;
    }

    .contact-header {
        padding-bottom: 1.5rem;
    }

    .contact-hero {
        margin-top: 1rem;
        padding-bottom: 1.5rem;
    }

    .contact-hero h1 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .contact-hero p {
        font-size: 1.1rem;
        padding: 0 1rem;
        line-height: 1.6;
        letter-spacing: 0.2px;
    }

    .contact-section {
        padding: 2rem 1.5rem 4rem;
    }

    .contact-container {
        gap: 2rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .contact-form {
        gap: 1rem;
    }

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

    .form-group input,
    .form-group textarea {
        padding: 0.85rem;
        font-size: 0.95rem;
    }

    .submit-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        width: 100%;
    }

    .info-card {
        padding: 1.5rem;
    }

    .info-card h3 {
        font-size: 1.1rem;
    }

    .info-card p {
        font-size: 0.9rem;
    }
}

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {
    .header-section {
        padding: 1rem;
    }

    .navbar {
        gap: 0.75rem;
    }

    .logo-img {
        height: 50px;
        min-width: 180px;
        max-width: 220px;
    }
    
    .logo-luxie,
    .logo-distribution,
    .logo-usa {
        font-size: 1rem;
    }
    
    .logo-usa {
        font-size: 0.95rem;
    }
    
    .logo-tagline {
        font-size: 0.5rem;
    }

    .nav-links {
        gap: 0.75rem;
        font-size: 0.8rem;
    }

    .hero-text h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .cta-button {
        padding: 0.85rem 1.75rem;
        font-size: 0.95rem;
        width: 100%;
    }

    .about-section {
        padding: 2rem 1rem;
    }

    .about-container {
        gap: 1.5rem;
    }

    .content-section h2 {
        font-size: 1.35rem;
    }

    .content-section p {
        font-size: 0.95rem;
    }

    .cta-section {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .footer-section {
        padding: 3rem 1.5rem 2rem;
    }

    .footer-heading {
        font-size: 1.75rem;
        padding: 0 1rem;
    }

    .footer-copyright {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }

    .footer-copyright p {
        font-size: 0.9rem;
    }

    .contact-hero h1 {
        font-size: 1.75rem;
    }

    .contact-hero p {
        font-size: 1rem;
        line-height: 1.6;
        letter-spacing: 0.2px;
    }

    .contact-section {
        padding: 1.5rem 1rem 3rem;
    }

    .contact-form-wrapper {
        padding: 1.25rem;
    }

    .services-content-section {
        padding: 2rem 1rem;
    }

    .service-item {
        gap: 1rem;
    }

    .service-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .service-content h2 {
        font-size: 1.3rem;
    }

    .service-content p {
        font-size: 0.95rem;
    }

    .why-choose-section {
        padding: 1.5rem;
    }

    .why-choose-heading {
        font-size: 1.5rem;
    }

    .why-choose-list li {
        font-size: 0.95rem;
        padding-left: 1.5rem;
    }

    .about-content-section {
        padding: 2rem 1rem;
    }

    .about-content-text p {
        font-size: 0.95rem;
    }
}
