/* Global Styles */
:root {
    --primary-blue: #64B5F6; /* Light Blue */
    --dark-blue: #2196F3;
    --accent-green: #8BC34A;
    --light-grey: #F8F8F8;
    --dark-grey: #333;
    --text-color: #444;
    --white: #ffffff;
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 5px 15px rgba(0, 0, 0, 0.15);
    --border-light: 1px solid #e0e0e0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    overflow-x: hidden;
}

.section-title {
    font-size: 2.2rem;
    color: var(--dark-grey);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background-color: var(--primary-blue);
    border-radius: 2px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark-grey);
    line-height: 1.2;
}

p {
    margin-bottom: 1em;
}

a {
    text-decoration: none;
    color: var(--primary-blue);
}


.cta-button {
    display: inline-block;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    white-space: normal;
    word-break: break-word;
}

.cta-button:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Header */
.main-header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-grey);
    font-size: 1.8rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.logo-link:hover {
    color: var(--primary-blue);
}

.logo-img {
    height: 40px;
    width: auto;
}

.company-name {
    font-size: 1.8rem;
    font-weight: 700;
}

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

.main-nav .nav-link {
    color: var(--dark-grey);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.main-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: width 0.3s ease;
}

.main-nav .nav-link:hover::after {
    width: 100%;
}

.burger-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--dark-grey);
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.is-active {
    visibility: visible;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background-color: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1060;
    transition: right 0.3s ease;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.mobile-menu.is-active {
    right: 0;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--dark-grey);
    cursor: pointer;
    align-self: flex-end;
    margin-bottom: 20px;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-link {
    display: block;
    padding: 10px 0;
    color: var(--dark-grey);
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid var(--light-grey);
}

.mobile-nav-link:hover {
    color: var(--primary-blue);
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #81D4FA 100%);
    color: var(--white);
    padding: 120px 0;
    overflow: hidden;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.hero-bg-shapes::before {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 120%;
    height: 120%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(5deg);
    border-radius: 50%;
    animation: shape-move-1 15s infinite alternate ease-in-out;
}

.hero-bg-shapes::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(-10deg);
    border-radius: 40%;
    animation: shape-move-2 18s infinite alternate-reverse ease-in-out;
}

@keyframes shape-move-1 {
    0% { transform: rotate(5deg) translate(0, 0); }
    100% { transform: rotate(8deg) translate(20px, 30px); }
}

@keyframes shape-move-2 {
    0% { transform: rotate(-10deg) translate(0, 0); }
    100% { transform: rotate(-12deg) translate(-20px, -20px); }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-headline {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--white);
    opacity: 0;
    transform: translateY(30px);
    animation: fade-in-up 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateY(30px);
    animation: fade-in-up 0.8s ease-out forwards;
    animation-delay: 0.4s;
}

.hero-section .cta-button {
    opacity: 0;
    transform: translateY(30px);
    animation: fade-in-up 0.8s ease-out forwards;
    animation-delay: 0.6s;
}

@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* About Us Section */
.about-section {
    padding: 100px 0;
    background-color: var(--light-grey);
}

.about-content-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.about-image-wrapper {
    flex: 1;
    text-align: center;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transition-delay: 0.2s;
}

.about-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
}

.about-section.animated .about-text {
    opacity: 1;
    transform: translateX(0);
}

.about-section.animated .about-image-wrapper {
    opacity: 1;
    transform: translateX(0);
}

.values-list ul {
    list-style: none;
    margin-top: 20px;
}

.values-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--dark-grey);
}

.values-list li i {
    color: var(--accent-green);
    font-size: 1.2rem;
    margin-right: 10px;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.services-section::before, .services-section::after {
    content: '';
    position: absolute;
    background: rgba(255, 192, 203, 0.1);
    pointer-events: none;
    border-radius: 10px;
    animation: subtle-move 20s infinite alternate ease-in-out;
}

.services-section::before {
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    transform: rotate(30deg);
}

.services-section::after {
    bottom: -70px;
    right: -70px;
    width: 250px;
    height: 250px;
    transform: rotate(-45deg);
    animation-delay: 5s;
}

@keyframes subtle-move {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(10px, 10px) rotate(5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.service-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    display: inline-block;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    line-height: 76px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    background-color: var(--primary-blue);
    color: var(--white);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    min-height: 60px; /* Ensure two lines */
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-description {
    color: var(--text-color);
    font-size: 0.95rem;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: var(--light-grey);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 30px;
}

.feature-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-green);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-color);
}

/* How It Works Section */
.how-it-works-section {
    padding: 100px 0;
    background-color: var(--white);
}

.how-it-works-section .content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.illustration-wrapper {
    flex: 1;
    text-align: center;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.illustration-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.steps-list {
    flex: 1;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transition-delay: 0.2s;
}

.how-it-works-section.animated .illustration-wrapper {
    opacity: 1;
    transform: translateX(0);
}

.how-it-works-section.animated .steps-list {
    opacity: 1;
    transform: translateX(0);
}

.numbered-steps {
    list-style: none;
    counter-reset: step-counter;
}

.numbered-steps li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 30px;
}

.numbered-steps li:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    counter-increment: step-counter;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

/* Industries Section (Accordion) */
.industries-section {
    padding: 100px 0;
    background-color: var(--light-grey);
}

.accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background-color: var(--white);
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: var(--white);
    border-bottom: var(--border-light);
    transition: background-color 0.3s ease;
}

.accordion-item:last-child .accordion-header {
    border-bottom: none;
}

.accordion-header:hover {
    background-color: #f5f5f5;
}

.accordion-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-grey);
    margin: 0;
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 25px;
    color: var(--text-color);
}

.accordion-content.is-open {
    max-height: 300px; /* Adjust as needed */
    padding: 20px 25px;
}

.accordion-content p {
    margin-bottom: 10px;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--white);
}

.testimonial-card {
    display: flex;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
    margin-bottom: 40px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.testimonial-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-content {
    flex: 2;
    padding: 40px;
    position: relative;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--dark-grey);
    margin-bottom: 25px;
    position: relative;
}

.testimonial-text::before {
    content: '“';
    font-size: 6rem;
    color: var(--primary-blue);
    position: absolute;
    top: -30px;
    left: -10px;
    line-height: 1;
    opacity: 0.2;
    z-index: 1;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-blue);
}

.author-name {
    font-weight: 600;
    color: var(--dark-grey);
    font-size: 1rem;
}

.highlight-panel {
    flex: 1;
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    color: var(--white);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.highlight-quote {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--light-grey);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ADD8E6; /* Subtle blue/cyan border */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08); /* Subtle shadow */
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: var(--white);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f5faff;
}

.faq-question h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark-grey);
    margin: 0;
    flex-grow: 1;
}

.chevron-box {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-blue);
    border-radius: 5px;
    margin-left: 15px;
}

.chevron-box i {
    font-size: 1.5rem;
    color: var(--white);
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .chevron-box i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 25px;
    color: var(--text-color);
}

.faq-answer.is-open {
    max-height: 200px; /* Adjust as needed */
    padding: 20px 25px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--white);
    text-align: center;
}

.contact-info-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-basis: 200px;
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.contact-item p, .contact-item a {
    font-size: 1.1rem;
    color: var(--dark-grey);
    word-break: break-all;
}

.contact-item a:hover {
    color: var(--dark-blue);
}

.email-break-word {
    word-break: break-all;
}

.contact-cta {
    margin-top: 30px;
}

/* Footer */
.main-footer {
    background-color: var(--dark-grey);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0;
    text-align: center;
    position: relative;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.footer-content > div {
    flex: 1;
    min-width: 250px;
    text-align: left;
}

.footer-logo-link {
    color: var(--white);
    margin-bottom: 15px;
}

.footer-logo-link:hover {
    color: var(--primary-blue);
}

.footer-logo-link .company-name {
    color: var(--white);
}

.footer-logo-link:hover .company-name {
    color: var(--primary-blue);
}

.company-info .logo-img {
    height: 45px;
}

.company-info .company-name {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-nav {
    text-align: left;
}

.footer-nav h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-nav-list {
    list-style: none;
}

.footer-nav-list li {
    margin-bottom: 10px;
}

.footer-nav-list a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-nav-list a:hover {
    color: var(--primary-blue);
}

.subscribe-section {
    text-align: left;
}

.subscribe-section h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.subscribe-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.subscribe-form input[type="email"] {
    flex-grow: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    min-width: 180px;
}

.subscribe-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.subscribe-button {
    background-color: var(--accent-green);
    color: var(--white);
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.subscribe-button:hover {
    background-color: #689F38;
}

/* Media Queries */
@media (max-width: 1100px) {
    .main-nav {
        display: none;
    }
    .burger-menu-toggle {
        display: block;
    }
    .header-container {
        padding: 0 20px;
    }
    .logo-link {
        font-size: 1.6rem;
    }
    .logo-img {
        height: 35px;
    }
    .company-name {
        font-size: 1.6rem;
    }
}

@media (max-width: 1023px) {
    .section-title {
        font-size: 2rem;
    }
    .hero-headline {
        font-size: 3rem;
    }
    .hero-description {
        font-size: 1.2rem;
    }
    .about-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .about-image-wrapper {
        order: -1;
    }
    .how-it-works-section .content-wrapper {
        flex-direction: column;
    }
    .illustration-wrapper {
        margin-bottom: 40px;
    }
    .testimonial-card {
        flex-direction: column;
    }
    .highlight-panel {
        padding: 30px;
    }
    .testimonial-content {
        padding: 30px;
    }
    .testimonial-text::before {
        font-size: 5rem;
        top: -20px;
        left: -5px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    .hero-section {
        padding: 80px 0;
        min-height: 500px;
    }
    .hero-headline {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    .cta-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    .about-section, .services-section, .features-section, .how-it-works-section, .industries-section, .testimonials-section, .faq-section, .contact-section {
        padding: 80px 0;
    }
    .services-grid, .features-grid {
        grid-template-columns: 1fr;
    }
    .service-title {
        font-size: 1.2rem;
        min-height: auto;
    }
    .feature-item h3 {
        font-size: 1.15rem;
    }
    .numbered-steps li {
        padding-left: 45px;
        margin-bottom: 25px;
    }
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    .step-title {
        font-size: 1.15rem;
    }
    .accordion-header, .faq-question {
        padding: 15px 20px;
    }
    .accordion-title, .faq-question h3 {
        font-size: 1rem;
    }
    .accordion-icon, .chevron-box i {
        font-size: 1.3rem;
    }
    .chevron-box {
        width: 30px;
        height: 30px;
    }
    .testimonial-text {
        font-size: 1rem;
    }
    .highlight-quote {
        font-size: 1.15rem;
    }
    .author-avatar {
        width: 50px;
        height: 50px;
    }
    .author-name {
        font-size: 0.9rem;
    }
    .contact-info-wrapper {
        flex-direction: column;
        gap: 25px;
    }
    .contact-item {
        flex-basis: auto;
    }
    .main-footer {
        padding: 40px 0;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-content > div {
        text-align: center;
    }
    .footer-nav ul {
        padding: 0;
    }
    .subscribe-form {
        flex-direction: column;
        align-items: stretch;
    }
    .subscribe-form input, .subscribe-form button {
        width: 100%;
    }
    .company-info .company-name {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    .logo-link {
        font-size: 1.4rem;
    }
    .logo-img {
        height: 30px;
    }
    .company-name {
        font-size: 1.4rem;
    }
    .hero-headline {
        font-size: 1.8rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .mobile-menu {
        width: 250px;
    }
}
/*
 * New stock styles for common text elements within .rightsFieldUnit
 * This includes headings (h1-h5), paragraphs (p), and lists (ul, li).
 * Heading font sizes are kept moderate as requested.
 */

/* Container styling for .rightsFieldUnit */
.rightsFieldUnit {
    padding: 20px; /* Padding around the content inside the unit */
    margin-top: 20px; /* Top margin for spacing between units */
    /* You might want to add other styles here, e.g., background-color, border, max-width */
}

/* Heading 1 styles */
.rightsFieldUnit h1 {
    font-size: 1.8rem; /* Moderate font size for H1 */
    margin-bottom: 0.8em; /* Space below the heading */
    line-height: 1.2; /* Improve readability */
    font-weight: 600; /* Slightly bolder than default for emphasis */
}

/* Heading 2 styles */
.rightsFieldUnit h2 {
    font-size: 1.5rem; /* Moderate font size for H2 */
    margin-bottom: 0.7em; /* Space below the heading */
    line-height: 1.2;
    font-weight: 600;
}

/* Heading 3 styles */
.rightsFieldUnit h3 {
    font-size: 1.3rem; /* Moderate font size for H3 */
    margin-bottom: 0.6em; /* Space below the heading */
    line-height: 1.3;
    font-weight: 500;
}

/* Heading 4 styles */
.rightsFieldUnit h4 {
    font-size: 1.15rem; /* Moderate font size for H4 */
    margin-bottom: 0.5em; /* Space below the heading */
    line-height: 1.3;
    font-weight: 500;
}

/* Heading 5 styles */
.rightsFieldUnit h5 {
    font-size: 1rem; /* Moderate font size for H5, similar to body text but bolder */
    margin-bottom: 0.4em; /* Space below the heading */
    line-height: 1.4;
    font-weight: 500;
}

/* Paragraph styles */
.rightsFieldUnit p {
    font-size: 1rem; /* Standard paragraph font size */
    line-height: 1.6; /* Good line height for readability */
    margin-bottom: 1em; /* Space between paragraphs */
}

/* Unordered list styles */
.rightsFieldUnit ul {
    list-style-type: disc; /* Default disc bullets */
    padding-left: 25px; /* Indent the list items from the left */
    margin-bottom: 1em; /* Space after the list */
}

/* List item styles */
.rightsFieldUnit li {
    font-size: 1rem; /* Standard list item font size */
    line-height: 1.5; /* Good line height for list items */
    margin-bottom: 0.5em; /* Space between individual list items */
}
