.page-body {
    background-color: #f9fafb;
    color: #1f2937;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, p, ul {
    margin: 0;
    padding: 0;
}

.main-header {
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 50;
}

.navbar {
    width: 100%;
    height: 5rem;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    box-sizing: border-box;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    display: none;
}

.desktop-menu {
    display: none;
}

.btn-primary {
    background-color: #f97316;
    color: #ffffff;
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.15s ease;
}

.btn-primary:hover {
    background-color: #ea580c;
}

.desktop-quote-btn {
    display: none;
}

.mobile-menu-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-icon {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}


.mobile-dropdown-container {
    background-color: #ffffff;
    width: 100%;
    border-color: #f3f4f6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.mobile-dropdown-container.open {
    max-height: 400px;
}

.mobile-menu-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 2rem;
    font-weight: 500;
    color: #1f2937;
    border-top: 1px solid #f3f4f6;
    list-style: none;
}

.mobile-nav-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: color 0.15s ease;
}
.mobile-nav-link:hover {
    color: #2563eb;
}

.mobile-menu-action {
    padding-top: 0.5rem;
}

.mobile-quote-btn {
    display: inline-block;
    text-align: center;
}


@media (min-width: 768px) {
    .navbar {
        justify-content: space-between;
    }
    .brand-logo {
        display: block;
    }
    .desktop-menu {
        display: flex;
        gap: 2rem;
        font-weight: 500;
        list-style: none;
    }
    .nav-link {
        text-decoration: none;
        color: inherit;
        transition: color 0.15s ease;
    }
    .nav-link:hover {
        color: #2563eb;
    }
    .desktop-quote-btn {
        display: inline-block;
    }
    .mobile-menu-toggle,
    .mobile-dropdown-container {
        display: none !important;
    }
}


.hero-section {
    width: 100%;
    background-color: #0f172a;
    color: #ffffff;
    padding: 8rem 1rem;
    text-align: center;
    background-image: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1440&q=80');
    background-size: cover;
    background-position: center;
    box-sizing: border-box;
}

.hero-content {
    max-width: 56rem;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #d1d5db;
    margin: 0 auto 2rem auto;
    max-width: 42rem;
    line-height: 1.5;
}

.btn-secondary {
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.15s ease;
}

.btn-secondary:hover {
    background-color: #1d4ed8;
}

@media (min-width: 768px) {
    .hero-title { font-size: 3rem; }
}


.content-wrapper {
    max-width: 80rem; 
    margin: 0 auto;
    padding: 5rem 1rem; 
    display: flex;
    flex-direction: column;
    gap: 6rem; 
    box-sizing: border-box;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-desc {
    color: #6b7280;
    line-height: 1.5;
}


.about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.video-wrapper {
    width: 100%;
    max-width: 576px; 
    background-color: #ffffff;
    padding: 12px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f3f4f6;
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16; 
    border-radius: 12px;
    overflow: hidden;
    background-color: #000;
}

.custom-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 1rem;
    outline: none;
}

.image-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
    max-width: 800px;
}

@media (min-width: 768px) {
    .image-gallery { grid-template-columns: 1fr 1fr; }
}

.gallery-card {
    background-color: #ffffff;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f3f4f6;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.gallery-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}


.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.service-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
    border: 1px solid #f3f4f6;
    transition: box-shadow 0.15s ease;
    box-sizing: border-box;
}

.service-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 3rem;
    height: 3rem;
    background-color: #dbeafe;
    color: #2563eb;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.service-card-desc {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.625;
    margin-bottom: 2rem;
}

.table-responsive-wrapper {
    overflow-x: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 1rem;
}

.table-container {
    width: 1000px;
    background-color: #fff;
}


.faq-container {
    background-color: #eff6ff;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
    border: 1px solid #dbeafe;
    box-sizing: border-box;
}

.faq-header {
    margin-bottom: 2.5rem;
}

.faq-list {
    max-width: 56rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
    border: 1px solid #f3f4f6;
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.faq-answer-text {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
}


.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 10px 120px;
}

.btn-modern {
    display: inline-block;          
    padding: 12px 24px;             
    background-color: #2563eb;      
    color: #ffffff;                 
    text-decoration: none;          
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    font-size: 16px;                
    font-weight: 600;               
    border-radius: 8px;             
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    transition: all 0.3s ease;      
}

.btn-modern:hover {
    background-color: #1d4ed8;      
    transform: translateY(-2px);    
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15); 
}


.main-footer {
    width: 100%;
    background-color: #111827;
    color: #9ca3af;
    padding: 3rem 0;
    border-top: 1px solid #1f2937;
}

.footer-grid {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-title {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-text {
    font-size: 0.75rem;
    line-height: 1.625;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-address {
    font-style: normal;
    font-size: 0.75rem;
    line-height: 1.5;
}

.footer-copyright {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.75rem;
    color: #6b7280;
}

.video-introduction {
    text-align: center;
}

.subtitles {
    text-align: center;
    color: gray;
    padding: 4px;
}

.action-buttons-rate {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.action-buttons {
  display: flex;
  justify-content: center;
}