/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    font-size: 16px;
}

/* Typography hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
}

p, a, button, input, textarea, select, label, span, div {
    font-family: 'Lato', sans-serif;
}

/* Header styles */
.header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #e5e5e5;
}

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

.login-btn {
    padding: 10px 43px !important;
    font-size: 1rem !important;
    min-width: auto !important;
    white-space: nowrap;
    box-shadow: none !important;
    border-radius: 0 !important;
    display: none;
}

.login-btn:hover {
    box-shadow: none !important;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.logo h2 {
    font-family: 'Oswald', sans-serif;
    color: #0066cc;
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0;
}

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

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-list li:has(.mobile-login-btn) {
    display: none;
}

.nav-link {
    font-family: 'Lato', sans-serif;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
}

.nav-link:hover {
    color: #0066cc;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #0066cc;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Hamburger menu */
.menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    display: block;
}

/* Hamburger animation when menu is open */
.menu-toggle:checked + .hamburger span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
}

.menu-toggle:checked + .hamburger span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero section */
.hero-section {
    background: url('images/image2-1000w.jpeg') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
    margin-top: 80px; /* Account for fixed header */
    position: relative;
    overflow: hidden;
}

@media (min-width: 2001px) {
    .hero-section {
        background: url('images/image2.jpeg') center/cover no-repeat;
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 2rem 0;
        margin-top: 80px; /* Account for fixed header */
        position: relative;
        overflow: hidden;
    }
}

@media (min-width: 1001px) {
    .hero-section {
        background: url('images/image2-2000w.jpeg') center/cover no-repeat;
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 2rem 0;
        margin-top: 80px; /* Account for fixed header */
        position: relative;
        overflow: hidden;
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 37, 64, 0.7);
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

.content {
    color: white;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-text {
    text-align: center;
}

.hero-image {
    display: none;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.hero-img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.main-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 3.4375rem; /* 55px */
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.description {
    font-family: 'Lato', sans-serif;
    font-size: 1.0625rem; /* 17px desktop */
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #fff;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    animation: slideInRight 1s ease-out 0.3s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

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

.btn {
    font-family: 'Lato', sans-serif;
    padding: 1rem 2rem;
    font-size: 1.125rem; /* 18px */
    font-weight: 500;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #2b95c9 0%, #1e7bb8 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(43, 149, 201, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1e7bb8 0%, #1565a0 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(43, 149, 201, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Why section */
.why-section {
    padding: 4rem 0;
    background-color: #fff;
}

.why-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.why-docforms {
    padding: 0;
}

.why-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.whydocform-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.whydocform-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.section-heading {
    font-family: 'Oswald', sans-serif;
    color: #0a2540;
    font-size: 1.75rem; /* 28px */
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #2b95c9;
    border-radius: 2px;
}

.section-description {
    font-family: 'Lato', sans-serif;
    color: #5B7187;
    font-size: 1.0625rem; /* 17px desktop */
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    font-family: 'Lato', sans-serif;
    color: #5B7187;
    font-size: 1.0625rem; /* 17px desktop */
    line-height: 1.6;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 2rem;
}

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

.feature-item::before {
    content: '✓';
    color: #2b95c9;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 1rem;
}

.sustainability {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #dee2e6;
    position: relative;
    overflow: hidden;
}

.sustainability::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2b95c9 0%, #1e7bb8 100%);
}

.sustainability .section-heading {
    color: #0a2540;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.sustainability .section-heading::after {
    display: none;
}

.sustainability .section-description {
    color: #5B7187;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Terms and Conditions styles */
.terms-main {
    margin-top: 80px;
    padding: 4rem 0;
    min-height: calc(100vh - 80px);
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.terms-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #0066cc;
    margin-bottom: 1rem;
    text-align: center;
}

.terms-summary {
    background-color: #f8f9fa;
    border-left: 4px solid #0066cc;
    padding: 2rem;
    margin-bottom: 2.5rem;
    border-radius: 0 4px 4px 0;
}

.terms-section {
    margin-bottom: 2.5rem;
}

.terms-section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 0.5rem;
}

.terms-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.terms-list li {
    font-family: 'Lato', sans-serif;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.terms-disclaimer {
    background-color: #f8f9fa;
    border-left: 4px solid #0066cc;
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 0 4px 4px 0;
}

.terms-disclaimer p {
    font-family: 'Lato', sans-serif;
    margin: 0;
    font-style: italic;
}

.terms-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: #004499;
    text-decoration: underline;
}

/* Responsive design for Terms and Conditions */
@media (max-width: 1024px) {
    .terms-content {
        max-width: 90%;
        padding: 0 1.5rem;
    }
    
    .terms-title {
        font-size: 2.25rem;
    }
    
    .terms-section-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .terms-main {
        padding: 3rem 0;
    }
    
    .terms-content {
        max-width: 95%;
        padding: 0 1rem;
        text-align: center;
    }
    
    .terms-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .terms-summary {
        padding: 1.5rem;
        margin-bottom: 2.25rem;
        text-align: left;
    }
    
    .terms-section {
        margin-bottom: 2.25rem;
        text-align: left;
    }
    
    .terms-section-title {
        font-size: 1.3rem;
        text-align: center;
        margin-bottom: 1.25rem;
    }
    
    .terms-list {
        text-align: left;
        padding-left: 1.25rem;
    }
    
    .terms-list li {
        margin-bottom: 0.85rem;
        line-height: 1.7;
    }
    
    .terms-disclaimer {
        text-align: left;
        padding: 1.25rem;
        margin-top: 2.5rem;
    }
}

@media (max-width: 480px) {
    .terms-main {
        padding: 2.5rem 0;
    }
    
    .terms-content {
        max-width: 98%;
        padding: 0 0.75rem;
    }
    
    .terms-title {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
        line-height: 1.3;
    }
    
    .terms-summary {
        padding: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .terms-section {
        margin-bottom: 2rem;
    }
    
    .terms-section-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .terms-list {
        padding-left: 1rem;
    }
    
    .terms-list li {
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .terms-disclaimer {
        padding: 1rem;
        margin-top: 2rem;
    }
    
    .terms-disclaimer p {
        font-size: 0.9rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .terms-content {
        padding: 0 0.5rem;
    }
    
    .terms-title {
        font-size: 1.6rem;
    }
    
    .terms-section-title {
        font-size: 1.15rem;
    }
    
    .terms-list li {
        font-size: 0.9rem;
    }
}

/* Privacy Policy styles */
.privacy-policy-main {
    margin-top: 80px;
    padding: 4rem 0;
    min-height: calc(100vh - 80px);
}

.privacy-policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.privacy-policy-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #0066cc;
    margin-bottom: 1rem;
    text-align: center;
}

.privacy-policy-meta {
    font-family: 'Lato', sans-serif;
    color: #666;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.privacy-section {
    margin-bottom: 2.5rem;
}

.privacy-section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 0.5rem;
}

.privacy-subsection-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 1.5rem 0 1rem 0;
}

.privacy-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-list li {
    font-family: 'Lato', sans-serif;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.privacy-disclaimer {
    background-color: #f8f9fa;
    border-left: 4px solid #0066cc;
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 0 4px 4px 0;
}

.privacy-disclaimer p {
    font-family: 'Lato', sans-serif;
    margin: 0;
    font-style: italic;
}

.privacy-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #004499;
    text-decoration: underline;
}

/* Responsive design for Privacy Policy */
@media (max-width: 1024px) {
    .privacy-policy-content {
        max-width: 90%;
        padding: 0 1.5rem;
    }
    
    .privacy-policy-title {
        font-size: 2.25rem;
    }
    
    .privacy-section-title {
        font-size: 1.4rem;
    }
    
    .privacy-subsection-title {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .privacy-policy-main {
        padding: 3rem 0;
    }
    
    .privacy-policy-content {
        max-width: 95%;
        padding: 0 1rem;
        text-align: center;
    }
    
    .privacy-policy-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .privacy-policy-meta {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .privacy-section {
        margin-bottom: 2.25rem;
        text-align: left;
    }
    
    .privacy-section-title {
        font-size: 1.3rem;
        text-align: center;
        margin-bottom: 1.25rem;
    }
    
    .privacy-subsection-title {
        font-size: 1.1rem;
        text-align: center;
        margin: 1.75rem 0 1.25rem 0;
    }
    
    .privacy-list {
        text-align: left;
        padding-left: 1.25rem;
    }
    
    .privacy-list li {
        margin-bottom: 0.85rem;
        line-height: 1.7;
    }
    
    .privacy-disclaimer {
        text-align: left;
        padding: 1.25rem;
        margin-top: 2.5rem;
    }
}

@media (max-width: 480px) {
    .privacy-policy-main {
        padding: 2.5rem 0;
    }
    
    .privacy-policy-content {
        max-width: 98%;
        padding: 0 0.75rem;
    }
    
    .privacy-policy-title {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
        line-height: 1.3;
    }
    
    .privacy-policy-meta {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .privacy-section {
        margin-bottom: 2rem;
    }
    
    .privacy-section-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .privacy-subsection-title {
        font-size: 1.05rem;
        margin: 1.5rem 0 1rem 0;
    }
    
    .privacy-list {
        padding-left: 1rem;
    }
    
    .privacy-list li {
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .privacy-disclaimer {
        padding: 1rem;
        margin-top: 2rem;
    }
    
    .privacy-disclaimer p {
        font-size: 0.9rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .privacy-policy-content {
        padding: 0 0.5rem;
    }
    
    .privacy-policy-title {
        font-size: 1.6rem;
    }
    
    .privacy-section-title {
        font-size: 1.15rem;
    }
    
    .privacy-subsection-title {
        font-size: 1rem;
    }
    
    .privacy-list li {
        font-size: 0.9rem;
    }
}

/* Footer */
.footer {
    background-color: #f8f9fa;
    padding: 3rem 0 2rem;
    border-top: 1px solid #e9ecef;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.footer-left {
    flex: 1;
}

.footer-logo {
    font-family: 'Oswald', sans-serif;
    color: #0a2540;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.footer-description {
    font-family: 'Lato', sans-serif;
    color: #5B7187;
    font-size: 1.0625rem; /* 17px desktop */
    line-height: 1.6;
    margin: 0;
}

.footer-right {
    text-align: right;
    flex: 1;
}

.footer-right p {
    font-family: 'Lato', sans-serif !important;
}

.footer-contact {
    font-family: 'Lato', sans-serif !important;
    color: #5B7187;
    font-size: 1.0625rem; /* 17px desktop */
    line-height: 1.6;
    margin: 0 0 0.5rem 0;
}

.footer-copyright {
    font-family: 'Lato', sans-serif !important;
    color: #5B7187;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Sustainability section */
.sustainability-section {
    padding: 6rem 0;
    background-color: #fff;
}

.sustainability-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.sustainability-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.sustainability-img {
    max-width: 80%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sustainability-img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.sustainability-text {
    padding: 0;
    text-align: left;
}

/* Benefits section */
.benefits-section {
    padding: 4rem 0;
    background-color: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    text-align: center;
    transition: all 0.3s ease;
}

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

.benefit-heading {
    font-family: 'Oswald', sans-serif;
    color: #0a2540;
    font-size: 1.375rem; /* 22px */
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.benefit-description {
    font-family: 'Lato', sans-serif;
    color: #5B7187;
    font-size: 1.125rem; /* 18px */
    line-height: 1.6;
    margin: 0;
}

.benefit-card-full {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 2rem;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Tablet styles */
@media (max-width: 768px) {
    .header-content {
        padding: 0.75rem 0;
    }
    
    .logo h2 {
        font-size: 1.5rem;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .nav-list {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.95rem;
    }
    
    .login-btn {
        display: none;
    }
    
    .hero-section {
        margin-top: 70px;
        padding: 1.5rem 0;
    }
    
    .hero-content {
        gap: 1.5rem;
    }
    
    
    .main-heading {
        font-size: 1.375rem; /* 22px mobile */
        margin-bottom: 1.25rem;
    }
    
    .description {
        font-size: 1rem; /* 16px mobile */
        margin-bottom: 2rem;
    }
    
    .btn {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
        min-width: 180px;
    }
    
    .button-group {
        gap: 0.75rem;
    }
    
    .why-section {
        padding: 3rem 0;
    }
    
    .why-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .why-image {
        order: 2;
        padding: 0.5rem;
    }
    
    .why-docforms {
        order: 1;
        text-align: center;
    }
    
    .section-heading {
        font-size: 1.375rem; /* 22px mobile */
    }
    
    .section-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .section-description {
        font-size: 1rem; /* 16px mobile */
    }
    
    .feature-item {
        padding: 0.75rem 0;
        padding-left: 2.5rem;
    }
    
    .feature-item::before {
        left: 0.25rem;
        top: 0.75rem;
    }
    
    .sustainability {
        padding: 2rem;
    }
    
    .sustainability .section-heading {
        font-size: 1.375rem; /* 22px mobile */
    }
    
    .sustainability .section-description {
        font-size: 1rem;
    }
    
    .sustainability-section {
        padding: 3rem 0;
    }
    
    .sustainability-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .sustainability-image {
        order: 2;
        padding: 0.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .sustainability-img {
        max-width: 100%;
    }
    
    .sustainability-text {
        order: 1;
        padding: 0;
        text-align: center;
    }
    
    /* Override for home section - text above image */
    .sustainability-home-section .sustainability-content .sustainability-image {
        order: 2 !important;
        display: flex !important;
    }
    
    .sustainability-home-section .sustainability-content .sustainability-text {
        order: 1 !important;
        display: block !important;
    }
    
    .sustainability-home-section {
        padding: 3rem 0;
    }
    
    .sustainability-home-section .sustainability-content {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 2.5rem;
        max-width: none;
    }
    
    .sustainability-home-section .sustainability-content .sustainability-image {
        order: 1 !important;
        padding: 0.5rem;
        display: flex !important;
        justify-content: center;
        align-items: center;
    }
    
    .sustainability-home-section .sustainability-content .sustainability-img {
        max-width: 100% !important;
    }
    
    .sustainability-home-section .sustainability-content .sustainability-text {
        order: 2 !important;
        padding: 0 !important;
        text-align: center !important;
    }
    
    
    .benefits-section {
        padding: 3rem 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center !important;
    }
    
    .footer-left {
        text-align: center !important;
    }
    
    .footer-right {
        text-align: center !important;
    }
    
    .footer-logo {
        font-size: 1.25rem;
    }
    
    .footer-description {
        font-size: 1rem; /* 16px mobile */
    }
    
    .footer-contact {
        font-size: 1rem; /* 16px mobile */
    }
    
    .footer-copyright {
        font-size: 0.85rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-card-full {
        padding: 2rem;
        margin-top: 1.5rem;
    }
    
    .benefit-heading {
        font-size: 1.125rem; /* 18px mobile */
    }
    
    .benefit-description {
        font-size: 1rem; /* 16px mobile */
    }
    
    .footer {
        padding: 2.5rem 0 1.75rem;
    }
    
    .footer-content {
        gap: 1.75rem;
    }
    
    .footer-logo {
        font-size: 1.3rem;
    }
    
    .footer-description {
        font-size: 1rem; /* 16px mobile */
    }
    
    .footer-contact {
        font-size: 1rem; /* 16px mobile */
    }
    
    .footer-copyright {
        font-size: 0.85rem;
    }
    
    .form-section {
        padding: 4rem 0;
    }
    
    .form-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .form-container {
        height: 600px;
        border-radius: 15px;
        width: 100%;
        overflow: hidden;
    }
    
    .form-container iframe {
        width: 100% !important;
        height: 100% !important;
        border: none !important;
        border-radius: 15px !important;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-list {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 2rem 0 0 0;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        list-style: none;
        margin: 0;
    }
    
    /* Show menu when checkbox is checked */
    .menu-toggle:checked ~ .nav-list {
        left: 0;
    }
    
    /* Backdrop overlay removed - no opacity */
    
    .nav-list li {
        margin: 0;
        width: 100%;
        text-align: left;
    }
    
    .nav-list li:has(.mobile-login-btn) {
        display: list-item;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 0.1rem 2rem;
        display: block;
        text-align: left;
        width: 100%;
        margin: 0;
        text-decoration: none;
        color: #333333;
        transition: all 0.3s ease;
        font-weight: 500;
    }
    
    .nav-link:hover {
        color: #0066cc;
        background-color: #f8f9fa;
        border-radius: 8px;
    }
    
    .mobile-login-btn {
        background: linear-gradient(135deg, #2b95c9 0%, #1e7bb8 100%);
        color: #fff !important;
        padding: 0.75rem 2rem !important;
        text-align: center;
        border-radius: 0;
        margin: 1.5rem 2rem 0 2rem !important;
        font-weight: 600;
        font-size: 1.2rem !important;
        display: block;
        width: calc(100% - 17.8rem) !important;
        box-shadow: none !important;
    }
    
    .mobile-login-btn:hover {
        background: linear-gradient(135deg, #1e7bb8 0%, #1565a0 100%);
        color: #fff !important;
        box-shadow: none !important;
    }
    
    /* Close button removed - menu closes by clicking hamburger or links */
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .header-content {
        padding: 0.5rem 0;
    }
    
    .logo h2 {
        font-size: 1.25rem;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .nav-list {
        top: 70px;
        height: calc(100vh - 70px);
        background-color: #ffffff;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 1.5rem 0 0 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.05rem 1.5rem;
        width: 100%;
        margin: 0;
        color: #333333;
        text-align: left;
    }
    
    .mobile-login-btn {
        padding: 0.75rem 1.5rem !important;
        margin: 1.5rem 1.5rem 0 1.5rem !important;
        font-size: 1.1rem !important;
        width: calc(100% - 17.8rem) !important;
    }
    
    /* Close button removed for mobile */
    
    .hero-section {
        margin-top: 60px;
        padding: 1rem 0;
        min-height: 90vh;
    }
    
    .hero-content {
        gap: 1rem;
    }
    
    
    .main-heading {
        font-size: 1.375rem; /* 22px mobile */
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .description {
        font-size: 1rem;
        margin-bottom: 1.75rem;
        line-height: 1.5;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        min-width: 160px;
        width: 100%;
        max-width: 280px;
    }
    
    .button-group {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .why-section {
        padding: 2.5rem 0;
    }
    
    .why-content {
        gap: 2rem;
    }
    
    .section-heading {
        font-size: 1.375rem; /* 22px mobile */
        margin-bottom: 1rem;
    }
    
    .section-description {
        font-size: 1rem; /* 16px mobile */
        margin-bottom: 2rem;
    }
    
    .feature-item {
        font-size: 1rem; /* 16px mobile */
        padding: 0.5rem 0;
        padding-left: 3rem;
    }
    
    .feature-item::before {
        left: 0.25rem;
        top: 0.5rem;
        font-size: 1rem;
    }
    
    .sustainability {
        padding: 1.5rem;
    }
    
    .sustainability .section-heading {
        font-size: 1.375rem; /* 22px mobile */
    }
    
    .sustainability .section-description {
        font-size: 1rem; /* 16px mobile */
    }
    
    .sustainability-section {
        padding: 2.5rem 0;
    }
    
    .sustainability-content {
        gap: 2rem;
    }
    
    .sustainability-text {
        padding: 0;
    }
    
    .sustainability-image {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0.25rem;
    }
    
    .sustainability-img {
        max-width: 100%;
    }
    
    /* Override for home section - text above image */
    .sustainability-home-section .sustainability-content .sustainability-image {
        order: 2 !important;
        display: flex !important;
    }
    
    .sustainability-home-section .sustainability-content .sustainability-text {
        order: 1 !important;
        display: block !important;
    }
    
    .sustainability-home-section {
        padding: 2.5rem 0;
    }
    
    .sustainability-home-section .sustainability-content {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 2rem;
        max-width: none;
    }
    
    .sustainability-home-section .sustainability-content .sustainability-image {
        order: 1 !important;
        padding: 0.25rem;
        display: flex !important;
        justify-content: center;
        align-items: center;
    }
    
    .sustainability-home-section .sustainability-content .sustainability-img {
        max-width: 100% !important;
    }
    
    .sustainability-home-section .sustainability-content .sustainability-text {
        order: 2 !important;
        padding: 0 !important;
        text-align: center !important;
    }
    
    
    .benefits-section {
        padding: 2.5rem 0;
    }
    
    .benefits-grid {
        gap: 1.25rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.25rem;
        text-align: center !important;
    }
    
    .footer-left {
        text-align: center !important;
    }
    
    .footer-right {
        text-align: center !important;
    }
    
    .footer-logo {
        font-size: 1.1rem;
    }
    
    .footer-description {
        font-size: 1rem; /* 16px mobile */
    }
    
    .footer-contact {
        font-size: 1rem; /* 16px mobile */
    }
    
    .footer-copyright {
        font-size: 0.8rem;
    }
    
    .benefit-card {
        padding: 1.25rem;
    }
    
    .benefit-card-full {
        padding: 1.75rem;
        margin-top: 1.25rem;
    }
    
    .benefit-heading {
        font-size: 1.125rem; /* 18px mobile */
        margin-bottom: 0.75rem;
    }
    
    .benefit-description {
        font-size: 1rem; /* 16px mobile */
    }
    
    .section-heading {
        font-size: 1.375rem; /* 22px mobile */
        margin-bottom: 1rem;
    }
    
    .section-description {
        font-size: 1rem; /* 16px mobile */
        margin-bottom: 1.5rem;
    }
    
    .features-list {
        gap: 1rem;
    }
    
    .feature-item {
        padding: 0.875rem;
    }
    
    .feature-number {
        width: 35px;
        height: 35px;
        font-size: 1.25rem;
    }
    
    .feature-text {
        font-size: 0.9rem;
    }
    
    .sustainability {
        padding: 1.5rem;
    }
}

/* Small mobile devices */
@media (max-width: 360px) {
    .logo h2 {
        font-size: 1.1rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .nav-list {
        gap: 0.75rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
    
    .hero-section {
        margin-top: 55px;
    }
    
    .hero-content {
        gap: 1rem;
    }
    
    .main-heading {
        font-size: 1.375rem; /* 22px mobile */
    }
    
    .description {
        font-size: 1rem; /* 16px mobile */
    }
    
    .btn {
        padding: 0.7rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .footer {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center !important;
    }
    
    .footer-left {
        text-align: center !important;
    }
    
    .footer-right {
        text-align: center !important;
    }
    
    .footer-logo {
        font-size: 1.2rem;
    }
    
    .footer-description {
        font-size: 1rem; /* 16px mobile */
        margin-bottom: 0.5rem;
    }
    
    .footer-contact {
        font-size: 1rem; /* 16px mobile */
        margin-bottom: 0.5rem;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
    }
    
    .form-section {
        padding: 3rem 0;
    }
    
    .form-content {
        max-width: 100%;
        padding: 0 0.75rem;
        align-items: center;
    }
    
    .form-container {
        height: 500px;
        border-radius: 12px;
        width: 100%;
        overflow: hidden;
    }
    
    .form-container iframe {
        width: 100% !important;
        height: 100% !important;
        border: none !important;
        border-radius: 12px !important;
    }
}

/* Compliance Page Styles */
.nav-link.active {
    color: #0066cc;
    font-weight: 600;
}

.nav-link.active::after {
    width: 80%;
}

/* Compliance Page Typography */
.compliance-main-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem; /* 40px desktop */
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
    animation: slideInLeft 1s ease-out;
}

.compliance-description {
    font-family: 'Lato', sans-serif;
    font-size: 1.0625rem; /* 17px desktop */
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: #fff;
    opacity: 0.95;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    animation: slideInRight 1s ease-out 0.3s both;
}

.compliance-buttons .btn {
    font-family: 'Lato', sans-serif;
    font-size: 1.125rem; /* 18px */
    font-weight: 500;
}

.sustainability-heading {
    font-family: 'Oswald', sans-serif;
    color: #0a2540;
    font-size: 1.75rem; /* 28px desktop */
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.sustainability-subheading {
    font-family: 'Lato', sans-serif;
    color: #0a2540;
    font-size: 1.125rem; /* 18px */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.sustainability-description {
    font-family: 'Lato', sans-serif;
    color: #5B7187;
    font-size: 1.0625rem; /* 17px desktop */
    line-height: 1.6;
    margin: 0;
}

.feature-title {
    font-family: 'Oswald', sans-serif;
    color: #0a2540;
    font-size: 1.375rem; /* 22px desktop */
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-description {
    font-family: 'Lato', sans-serif;
    color: #5B7187;
    font-size: 1.0625rem; /* 17px desktop */
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-list li {
    font-family: 'Lato', sans-serif;
    color: #5B7187;
    font-size: 1.0625rem; /* 17px desktop */
    line-height: 1.6;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.benefit-heading {
    font-family: 'Oswald', sans-serif;
    color: #0a2540;
    font-size: 1.375rem; /* 22px desktop */
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.benefit-description {
    font-family: 'Lato', sans-serif;
    color: #5B7187;
    font-size: 1.0625rem; /* 17px desktop */
    line-height: 1.6;
    margin: 0;
}

.cta-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 1.75rem; /* 28px desktop */
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
}

.cta-description {
    font-family: 'Lato', sans-serif;
    font-size: 1.0625rem; /* 17px desktop */
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #fff;
    opacity: 0.9;
}

.cta-buttons .btn {
    font-family: 'Lato', sans-serif;
    font-size: 1.125rem; /* 18px */
    font-weight: 500;
}

/* Compliance Hero Section */
.compliance-hero {
    background-color: #0a2540;
    padding: 6rem 0 4rem;
    margin-top: 80px;
    position: relative;
    overflow: hidden;

}

.compliance-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 500px;
}

.compliance-hero-content {
    color: white;
    position: relative;
    z-index: 2;

}

.compliance-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.compliance-hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.compliance-hero-img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}


.compliance-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.compliance-buttons .btn-primary {
    background: #2b95c9;
    color: #fff;
    box-shadow: 0 8px 25px rgba(43, 149, 201, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.compliance-buttons .btn-primary:hover {
    background: #1e7bb8;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(43, 149, 201, 0.4);
}

.compliance-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.compliance-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Compliance Features Section */
.compliance-features {
    padding: 5rem 0;
    background-color: #fff;
}

/* Sustainability Section */
.sustainability-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

/* Sustainability Home Section (Index Page) */
.sustainability-home-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.sustainability-home-section .sustainability-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: none;
}

.sustainability-home-section .sustainability-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.sustainability-home-section .sustainability-img {
    max-width: 80%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sustainability-home-section .sustainability-img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.sustainability-home-section .sustainability-text {
    padding: 0;
    text-align: left;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    align-items: start;
}

.feature-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #e9ecef;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #2b95c9;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2b95c9 0%, #1e7bb8 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}


.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    flex-grow: 1;
}


.feature-list li::before {
    content: '✓';
    color: #2b95c9;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

/* Compliance Standards Section */
.compliance-standards {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.standards-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.standards-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.standard-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.standard-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #2b95c9;
}

.standard-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.standard-info h4 {
    font-family: 'Inter', sans-serif;
    color: #0a2540;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.standard-info p {
    font-family: 'Inter', sans-serif;
    color: #5B7187;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.standards-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.compliance-badge {
    background: linear-gradient(135deg, #2b95c9 0%, #1e7bb8 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(43, 149, 201, 0.3);
    position: relative;
    overflow: hidden;
}

.compliance-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.badge-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.compliance-badge h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.compliance-badge p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* Compliance Benefits Section */
.compliance-benefits {
    padding: 5rem 0;
    background-color: #fff;
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #2b95c9;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-item h3 {
    font-family: 'Inter', sans-serif;
    color: #0a2540;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.benefit-item p {
    font-family: 'Inter', sans-serif;
    color: #5B7187;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Compliance CTA Section */
.compliance-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a2540 0%, #1e3a5f 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}


.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Compliance Page */
@media (max-width: 768px) {
    .compliance-hero {
        padding: 4rem 0 3rem;
        margin-top: 70px;
    }
    
    .compliance-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .compliance-hero-content {
        order: 2;
    }
    
    .compliance-hero-image {
        order: 1;
    }
    
    .compliance-main-heading {
        font-size: 1.375rem; /* 22px mobile */
        margin-bottom: 1.25rem;
    }
    
    .compliance-description {
        font-size: 1rem; /* 16px mobile */
        margin-bottom: 2rem;
    }
    
    .sustainability-heading {
        font-size: 1.375rem; /* 22px mobile */
        margin-bottom: 1.25rem;
    }
    
    .sustainability-description {
        font-size: 1rem; /* 16px mobile */
    }
    
    .feature-title {
        font-size: 1.125rem; /* 18px mobile */
    }
    
    .feature-description {
        font-size: 1rem; /* 16px mobile */
    }
    
    .feature-list li {
        font-size: 1rem; /* 16px mobile */
    }
    
    .benefit-heading {
        font-size: 1.25rem; /* 20px mobile */
    }
    
    .benefit-description {
        font-size: 1rem; /* 16px mobile */
    }
    
    .cta-heading {
        font-size: 1.125rem; /* 18px mobile */
    }
    
    .cta-description {
        font-size: 1rem; /* 16px mobile */
    }
    
    .compliance-buttons {
        gap: 0.75rem;
        justify-content: center;
    }
    
    .compliance-buttons .btn {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
        min-width: 180px;
    }
    
    .compliance-hero-img {
        max-width: 80%;
    }
    
    .compliance-features {
        padding: 3rem 0;
    }
    
    .sustainability-section {
        padding: 3rem 0;
    }
    
    .sustainability-heading {
        font-size: 1.375rem; /* 22px mobile */
        margin-bottom: 1.25rem;
    }
    
    .sustainability-description {
        font-size: 1rem; /* 16px mobile */
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .compliance-standards {
        padding: 3rem 0;
    }
    
    .standards-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .standards-list {
        margin-top: 1.5rem;
    }
    
    .standard-item {
        padding: 1.25rem;
    }
    
    .compliance-badge {
        padding: 2rem 1.5rem;
    }
    
    .badge-icon {
        font-size: 3rem;
    }
    
    .compliance-badge h3 {
        font-size: 1.5rem;
    }
    
    .compliance-benefits {
        padding: 3rem 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .compliance-cta {
        padding: 3rem 0;
    }
    
    .cta-heading {
        font-size: 1.125rem; /* 18px mobile */
    }
    
    .cta-description {
        font-size: 1rem; /* 16px mobile */
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .compliance-hero {
        margin-top: 60px;
        padding: 3rem 0 2rem;
    }
    
    .compliance-hero-grid {
        gap: 1.5rem;
    }
    
    .compliance-main-heading {
        font-size: 1.375rem; /* 22px mobile */
        margin-bottom: 1rem;
    }
    
    .compliance-description {
        font-size: 1rem; /* 16px mobile */
        margin-bottom: 1.5rem;
    }
    
    .sustainability-heading {
        font-size: 1.375rem; /* 22px mobile */
        margin-bottom: 1rem;
    }
    
    .sustainability-description {
        font-size: 1rem; /* 16px mobile */
    }
    
    .feature-title {
        font-size: 1.125rem; /* 18px mobile */
    }
    
    .feature-description {
        font-size: 1rem; /* 16px mobile */
    }
    
    .feature-list li {
        font-size: 1rem; /* 16px mobile */
    }
    
    .benefit-heading {
        font-size: 1.125rem; /* 18px mobile */
    }
    
    .benefit-description {
        font-size: 1rem; /* 16px mobile */
    }
    
    .cta-heading {
        font-size: 1.125rem; /* 18px mobile */
    }
    
    .cta-description {
        font-size: 1rem; /* 16px mobile */
    }
    
    .compliance-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .compliance-buttons .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        min-width: 160px;
        width: 100%;
        max-width: 280px;
    }
    
    .compliance-hero-img {
        max-width: 90%;
    }
    
    .compliance-features {
        padding: 2.5rem 0;
    }
    
    .sustainability-section {
        padding: 2.5rem 0;
    }
    
    .sustainability-heading {
        font-size: 1.375rem; /* 22px mobile */
        margin-bottom: 1rem;
    }
    
    .sustainability-description {
        font-size: 1rem; /* 16px mobile */
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature-title {
        font-size: 1.125rem; /* 18px mobile */
    }
    
    .feature-description {
        font-size: 1rem; /* 16px mobile */
    }
    
    .feature-list li {
        font-size: 1rem; /* 16px mobile */
    }
    
    .benefit-description {
        font-size: 1rem; /* 16px mobile */
    }
    
    .compliance-standards {
        padding: 2.5rem 0;
    }
    
    .standard-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .standard-icon {
        font-size: 1.5rem;
    }
    
    .compliance-badge {
        padding: 1.5rem 1rem;
    }
    
    .badge-icon {
        font-size: 2.5rem;
    }
    
    .compliance-badge h3 {
        font-size: 1.3rem;
    }
    
    .compliance-benefits {
        padding: 2.5rem 0;
    }
    
    .benefit-item {
        padding: 1.25rem;
    }
    
    .benefit-icon {
        font-size: 2rem;
    }
    
    .benefit-item h3 {
        font-size: 1.1rem;
    }
    
    .compliance-cta {
        padding: 2.5rem 0;
    }
    
    .cta-heading {
        font-size: 1.125rem; /* 18px mobile */
    }
    
    .cta-description {
        font-size: 1rem; /* 16px mobile */
    }
}

/* Clinical Page Styles */
.clinical-hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.clinical-hero-img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* Clinical Page Responsive Styles */
@media (max-width: 768px) {
    .clinical-hero-img {
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .clinical-hero-img {
        max-width: 90%;
    }
}

/* Force Mobile Footer Centering */
@media (max-width: 768px) {
    .footer .footer-content {
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .footer .footer-left {
        text-align: center !important;
        width: 100% !important;
    }
    
    .footer .footer-right {
        text-align: center !important;
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .footer .footer-content {
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .footer .footer-left {
        text-align: center !important;
        width: 100% !important;
    }
    
    .footer .footer-right {
        text-align: center !important;
        width: 100% !important;
    }
}

/* Mobile Form Improvements */
@media (max-width: 768px) {
    .form-section {
        padding: 4rem 0 !important;
        background-color: #f8f9fa !important;
    }
    
    .form-content {
        max-width: 100% !important;
        padding: 0 1rem !important;
        margin: 0 auto !important;
        width: 100% !important;
    }
    
    .form-container {
        height: 600px !important;
        min-height: 600px !important;
        max-height: 80vh !important;
        width: 100% !important;
        overflow: hidden !important;
        display: block !important;
        border-radius: 15px !important;
        background-color: #fff !important;
        border: 1px solid #e9ecef !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .form-container iframe {
        width: 100% !important;
        height: 100% !important;
        border: none !important;
        border-radius: 15px !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        min-height: 600px !important;
    }
    
    #inline-bH2NKyx8Sw7LVESHWLL3 {
        width: 100% !important;
        height: 100% !important;
        border: none !important;
        border-radius: 15px !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        min-height: 600px !important;
    }
}

@media (max-width: 480px) {
    .form-section {
        padding: 2rem 0 !important;
        background-color: #f8f9fa !important;
    }
    
    .form-content {
        max-width: 100% !important;
        padding: 0 0.75rem !important;
        margin: 0 auto !important;
        width: 100% !important;
    }
    
    .form-container {
        height: 500px !important;
        min-height: 500px !important;
        max-height: 70vh !important;
        width: 100% !important;
        overflow: hidden !important;
        display: block !important;
        border-radius: 12px !important;
        background-color: #fff !important;
        border: 1px solid #e9ecef !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .form-container iframe {
        width: 100% !important;
        height: 100% !important;
        border: none !important;
        border-radius: 12px !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        min-height: 500px !important;
    }
    
    #inline-bH2NKyx8Sw7LVESHWLL3 {
        width: 100% !important;
        height: 100% !important;
        border: none !important;
        border-radius: 12px !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        min-height: 500px !important;
    }
}

/* Contact page form section */
.contact-form-section {
    margin-top: 80px;
    padding: 4rem 0;
    background-color: #f8f9fa;
}

/* Contact Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.form-section-wrapper {
    background-color: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-content-wrapper {
    width: 100%;
}

.form-section-wrapper .form-container {
    height: 590px;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
}

/* Address Section */
.address-section {
    background-color: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 600px;
    display: flex;
    flex-direction: column;
}

.address-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-bottom: 0;
}

.address-details {
    flex-shrink: 0;
}

.address-section-wrapper {
    position: sticky;
    top: 100px;
    height: 600px;
}

.map-container {
    margin-top: 2rem;
    flex: 1;
    width: 100%;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    box-shadow: none;
    margin-left: -2rem;
    margin-right: -2rem;
    width: calc(100% + 4rem);
    margin-bottom: -2rem;
}

.address-heading {
    font-family: 'Oswald', sans-serif;
    color: #0a2540;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
}

.address-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #2b95c9;
    border-radius: 2px;
}

.address-details {
    margin-top: 2rem;
}

.address-company {
    font-family: 'Lato', sans-serif;
    color: #0a2540;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.address-line {
    font-family: 'Lato', sans-serif;
    color: #5B7187;
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 0.25rem;
}

.address-line:last-child {
    margin-bottom: 0;
}

/* Responsive styles for Address Section */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-section-wrapper {
        padding: 1.5rem;
        height: 540px;
        display: flex;
        flex-direction: column;
    }
    
    .form-content-wrapper {
        flex: 1;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }
    
    .form-section-wrapper .form-container {
        flex: 1;
        min-height: 0;
    }
    
    .form-section-wrapper .form-container iframe {
        height: 100% !important;
        width: 100% !important;
    }
    
    .address-section-wrapper {
        height: 500px;
    }
    
    .address-section {
        height: 500px;
    }
    
    .map-container {
        height: calc(500px - 8rem);
    }
    
    .address-section-wrapper {
        position: static;
    }
    
    .address-section {
        padding: 1.5rem;
    }
    
    .address-content {
        text-align: center;
    }
    
    .map-container {
        height: calc(500px - 8rem);
        min-height: 250px;
        margin-top: 1.5rem;
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        width: calc(100% + 3rem);
    }
    
    .address-heading {
        font-size: 1.375rem;
    }
    
    .address-company {
        font-size: 1rem;
    }
    
    .address-line {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-grid {
        gap: 1.5rem;
    }
    
    .form-section-wrapper {
        padding: 1rem;
        height: 540px;
        display: flex;
        flex-direction: column;
    }
    
    .form-content-wrapper {
        flex: 1;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }
    
    .form-section-wrapper .form-container {
        flex: 1;
        min-height: 0;
    }
    
    .form-section-wrapper .form-container iframe {
        height: 100% !important;
        width: 100% !important;
    }
    
    .address-section-wrapper {
        height: 450px;
    }
    
    .address-section {
        height: 450px;
    }
    
    .map-container {
        height: calc(450px - 6rem);
    }
    
    .address-section {
        padding: 1rem;
    }
    
    .address-heading {
        font-size: 1.375rem;
        margin-bottom: 1.25rem;
    }
    
    .address-details {
        margin-top: 1.5rem;
    }
    
    .map-container {
        height: calc(450px - 6rem);
        min-height: 200px;
        margin-top: 1.5rem;
        margin-left: -1rem;
        margin-right: -1rem;
        width: calc(100% + 2rem);
    }
    
    .address-company {
        font-size: 1rem;
    }
    
    .address-line {
        font-size: 1rem;
    }
}

/* Force mobile layout for sustainability home section */
@media (max-width: 768px) {
    .sustainability-home-section .sustainability-content .sustainability-image {
        order: 2 !important;
        display: flex !important;
    }
    
    .sustainability-home-section .sustainability-content .sustainability-text {
        order: 1 !important;
        display: block !important;
    }
}

@media (max-width: 480px) {
    .sustainability-home-section .sustainability-content .sustainability-image {
        order: 2 !important;
        display: flex !important;
    }
    
    .sustainability-home-section .sustainability-content .sustainability-text {
        order: 1 !important;
        display: block !important;
    }
}
