:root {
    --primary: #1a1a1a;
    --primary-accent: #2a2a2a;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --text-light: #999999;
    --bg-white: #ffffff;
    --bg-light: #f8f8f8;
    --bg-dark: #1a1a1a;
    --bg-medium: #2a2a2a;
    --border: #e5e5e5;
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    border-bottom: 2px solid #101820;
    padding: 0;
    transition: transform 0.3s ease;
}

.navbar.nav-hidden {
    transform: translateY(-100%);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: default;
    user-select: none;
}

.logo-img {
    height: 140px;
    width: auto;
    margin-top: -25px;
    margin-bottom: -25px;
    pointer-events: none;
    user-select: none;
}

.logo-text {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #003d7a;
    cursor: default;
    user-select: none;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    outline: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.nav-link:hover {
    color: var(--text-dark);
    text-decoration: underline;
    text-decoration-color: #003d7a;
}

.nav-link:focus {
    outline: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    height: 600px;
    margin-top: 70px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 180px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 52px;
    font-weight: 400;
    color: white;
    max-width: 800px;
    line-height: 1.2;
    margin-bottom: 30px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-accent);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
}

.btn-outline:hover {
    background: var(--text-dark);
    color: white;
}

/* ============================================
   Sections
   ============================================ */
.section {
    padding: 100px 0;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.section-light {
    background: #f5f5f5;
}

.section-dark {
    background: var(--bg-dark);
    color: white;
}

.section-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 15px;
}

.section-title-center {
    font-size: 42px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 50px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

/* ============================================
   About Section
   ============================================ */
.about {
    border-bottom: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.about-intro-box {
    background: var(--bg-dark);
    padding: 60px 40px;
    color: white;
    position: relative;
}

.about-intro-box .section-label {
    color: var(--text-light);
}

.year-badge {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    margin-top: 40px;
    border-top: 3px solid white;
    padding-top: 30px;
}

.year-badge span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: 10px;
}

.about-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 25px;
}

.about-text p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text .btn {
    margin-top: 20px;
}

/* ============================================
   Products Section
   ============================================ */
.products .container {
    max-width: 1600px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.product-card {
    background: white;
    border: 2px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--text-dark);
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.product-content {
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 14px;
    font-weight: 700;
    background: white;
    padding: 8px 14px;
    border-radius: 20px;
    color: var(--text-dark);
}

.product-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 0;
}

.product-content p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.product-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: var(--transition);
}

.product-link:hover {
    color: var(--text-gray);
    text-decoration: underline;
}

.additional-products {
    background: var(--bg-light);
    padding: 60px;
    border-radius: 8px;
}

.additional-products h3 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-dark);
}

.specialty-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.specialty-item {
    text-align: center;
}

.specialty-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.specialty-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.specialty-item p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================
   Services Section
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    border: 2px solid var(--border);
    padding: 40px 30px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--text-dark);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 15px;
    margin-top: 20px;
    display: block;
    height: 67px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.service-icon-img {
    width: 67px;
    height: 67px;
    object-fit: contain;
}

.service-icon-black {
    filter: grayscale(100%) brightness(0);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 10px 0;
    padding-left: 20px;
    border-left: 3px solid var(--text-dark);
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    background: var(--bg-light);
    padding-right: 10px;
}

/* ============================================
   Industries Section
   ============================================ */
.industries {
    background: white;
}

.industries .container {
    max-width: 1500px;
}

.industries h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: var(--text-dark);
}

.industries-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.industry-item {
    position: relative;
    height: 325px;
    overflow: hidden;
    cursor: pointer;
}

.industry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.industry-item:hover img {
    transform: scale(1.1);
}

.industry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 25px;
    transition: background 0.3s ease;
}

.industry-item:hover .industry-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
}

.industry-overlay h3 {
    color: white;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    z-index: 2;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.contact-form-wrapper h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-info-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.contact-info-item a {
    color: white;
}

.contact-info-item a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: #f5f5f5;
    color: #1a1a1a;
    padding: 60px 0 0;
}

.footer * {
    outline: none;
}

.footer img {
    pointer-events: none;
    user-select: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
    padding: 0 40px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 0;      /* Adjust to move up/down */
    margin-left: 30px;     /* Adjust to move left/right */
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: #d0d0d0;
    margin: 0;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 60px;      /* Adjust to move up/down */
    margin-left: 0;     /* Adjust to move left/right */
    border: none;
    outline: none;
}

.footer-left:focus,
.footer-left:active {
    border: none;
    outline: none;
}

.footer-logo-section {
    display: flex;
    align-items: flex-start;
    pointer-events: none;
    user-select: none;
}

.footer-logo {
    height: 162px;
    width: auto;
    margin-left: -10px;
    margin-top: -63px;
    margin-bottom: -35px;
    pointer-events: none;
    user-select: none;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.footer-label {
    font-size: 11px;
    font-weight: 600;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-contact-item a {
    display: inline-block;
    color: #1a1a1a;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #666666;
}

.footer-contact-item p {
    color: #1a1a1a;
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
}

.footer-description {
    max-width: 600px;
    margin-top: 0;      /* Adjust to move up/down */
    margin-left: 0;     /* Adjust to move left/right */
}

.footer-description p {
    color: #555555;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.footer-form {
    max-width: 600px;
}

.footer-form h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.footer-form .contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-form .form-group input,
.footer-form .form-group textarea {
    padding: 10px 12px;
    border: 1px solid #d0d0d0;
    background: white;
    color: #1a1a1a;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

.footer-form .form-group input:focus,
.footer-form .form-group textarea:focus {
    outline: none;
    border-color: #888888;
    background: white;
}

.footer-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.footer-form .btn {
    margin-top: 10px;
}

/* Form Error Styles */
.field-error {
    border-color: #ef4444 !important;
    background-color: #fef2f2 !important;
}

.field-error:focus {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.form-error-message {
    color: #dc2626;
    font-size: 14px;
    margin-bottom: 12px;
    padding: 10px 12px;
    background-color: #fef2f2;
    border-left: 3px solid #ef4444;
    border-radius: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    padding: 30px 0;
}

.footer-bottom p {
    color: #666666;
    font-size: 14px;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #666666;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #1a1a1a;
}

/* ============================================
   Responsive Design
   ============================================ */

/* Extra Large Screens (32"+ monitors) */
@media (min-width: 2800px) {
    .container {
        max-width: 1800px;
        padding: 0 60px;
    }
    
    .logo-img {
        height: 180px;
        margin-top: -32px;
        margin-bottom: -32px;
    }
    
    .nav-link {
        font-size: 16px;
    }
    
    .nav-menu {
        gap: 50px;
    }
    
    .about-intro-box {
        max-width: 450px;
    }
    
    .about-content {
        gap: 80px;
        max-width: 1800px;
        margin: 0 auto;
        padding: 0 260px;
    }
    
    .products .container {
        max-width: 2200px;
    }
    
    .industries .container {
        max-width: 2100px;
    }
    
    .footer-content {
        max-width: 1800px;
        margin: 0 auto 60px auto;
        gap: 100px;
        padding: 0 260px;
        grid-template-columns: 1fr 1.5fr;
    }
    
    .footer-right {
        margin-left: 0;
    }
    
    .footer-logo {
        margin-left: 0;
    }
    
    .hero-title {
        font-size: 64px;
        max-width: 1100px;
    }
    
    .section-title-center,
    .section-header-center h2 {
        font-size: 44px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-intro-box {
        padding: 50px 30px;
    }
    
    .year-badge {
        font-size: 60px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .specialty-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .industries-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-right {
        align-items: center;
        text-align: center;
        margin-left: 0;
    }
    
    .footer-left {
        align-items: center;
        text-align: center;
        margin-top: -20px;
        gap: 20px;
        padding-bottom: 50px;
        border-bottom: 1px solid #d0d0d0;
    }
    
    .footer-description {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .footer-form {
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-form .contact-form {
        width: 100%;
        max-width: 500px;
    }
    
    .footer-logo {
        height: 100px;
        margin-left: 0;
        margin-top: 0;
        margin-bottom: 0;
    }
    
    .footer-logo-section {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .logo-img {
        height: 210px;
    }
    
    .logo-text {
        font-size: 12px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 160px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px 30px 20px 30px;
        gap: 20px;
        border-bottom: 1px solid var(--border);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero {
        height: 400px;
        margin-top: 70px;
        align-items: flex-end;
        padding-bottom: 50px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .section-title-center,
    .section-header-center h2 {
        font-size: 32px;
    }
    
    .about-images {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .specialty-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-gallery {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        gap: 60px;
    }
    
    .footer-right {
        align-items: center;
        text-align: center;
        margin-left: 0;
        padding: 0;
        width: 100%;
    }
    
    .footer-left {
        gap: 20px;
        padding-bottom: 50px;
        border-bottom: 1px solid #d0d0d0;
    }
    
    .footer-description {
        max-width: 100%;
        margin: 0 auto;
        width: 100%;
    }
    
    .footer-form {
        max-width: 100%;
        margin: 0 auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-form h3 {
        text-align: center;
    }
    
    .footer-form .contact-form {
        width: 100%;
        max-width: 500px;
    }
    
    .footer-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 180px;
    }
    
    .logo-text {
        display: none;
    }
    
    .footer-logo {
        height: 150px;
        margin-left: 0;
        margin-top: 0;
        margin-bottom: 0;
    }
    
    .hero {
        padding-bottom: 95px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .section-title-center {
        font-size: 28px;
    }
    
    .additional-products {
        padding: 40px 20px;
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center {
    text-align: center;
}

/* ============================================
   Modal Styles
   ============================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 0;
    border-radius: 8px;
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.modal-content h2 {
    margin: 0;
    padding: 25px 30px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    border-bottom: 3px solid #101820;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #ffffff;
    font-size: 35px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
    z-index: 1;
}

.modal-close:hover,
.modal-close:focus {
    color: #cccccc;
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    max-height: calc(80vh - 100px);
    color: #1a1a1a;
    line-height: 1.8;
}

.modal-body p {
    margin-bottom: 15px;
    font-size: 15px;
    color: #333333;
}

.modal-body h3 {
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.modal-body ul,
.modal-body ol {
    margin-left: 20px;
    margin-bottom: 15px;
    list-style-position: outside;
    padding-left: 20px;
}

.modal-body ul {
    list-style-type: disc;
}

.modal-body li {
    margin-bottom: 8px;
    color: #333333;
    list-style: inherit;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
        max-height: 85vh;
    }
    
    .modal-content h2 {
        padding: 20px 20px;
        font-size: 20px;
    }
    
    .modal-close {
        top: 12px;
        right: 15px;
        font-size: 30px;
    }
    
    .modal-body {
        padding: 20px;
        max-height: calc(85vh - 80px);
    }
}
