/* =====================================================
   GI Group Unified CSS - 統一CSSファイル
   ===================================================== */

/* ===== GLOBAL RESET AND BASE STYLES ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
    padding-top: 50px;
    margin: 0;
}

/* ===== MOBILE HEADER STYLES ===== */
.show-on-mobile {
    display: none;
}

.m--header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000000 !important;
    background-color: #000000 !important;
    z-index: 9999;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    height: 50px;
    width: 100vw !important;
    box-sizing: border-box;
    display: none;
}

.m--header__logo img {
    height: 20px;
    width: auto;
    display: block;
    object-fit: contain;
}

.m-menu {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.m-menu .bar {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* ハンバーガーメニュー アクティブ状態のアニメーション */
.m-menu.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.m-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.m-menu.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* モバイルメニューパネル */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    z-index: 9999;
    padding: 70px 0 30px 0;
    overflow-y: auto;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-nav {
    padding: 0;
    margin: 0;
}

.mobile-menu-nav .nav-section {
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 0;
}

.mobile-menu-nav .nav-section:last-child {
    border-bottom: none;
}

.mobile-menu-nav .nav-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    padding: 20px 25px 15px 25px;
    margin: 0;
    border-bottom: 1px solid #e8e8e8;
    background: #f8f9fa;
}

.mobile-menu-nav .nav-item {
    display: block;
    padding: 15px 25px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.2s ease;
}

.mobile-menu-nav .nav-item:hover {
    background: #f0f8ff;
    color: #4a90e2;
}

.mobile-menu-nav .nav-item:last-child {
    border-bottom: none;
}

/* モバイルメニューのクローズボタン */
.mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close::before,
.mobile-menu-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #333;
    transition: 0.3s;
}

.mobile-menu-close::before {
    transform: rotate(45deg);
}

.mobile-menu-close::after {
    transform: rotate(-45deg);
}

/* ===== DESKTOP HEADER STYLES ===== */
header {
    background: #000000 !important;
    background-color: #000000 !important;
    border-bottom: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 50px;
    width: 100vw !important;
    box-sizing: border-box;
}

.header__logo-box {
    position: absolute !important;
    left: 20px !important;
    top: 15px !important;
    z-index: 101 !important;
    transform: none !important;
}

.header__logo {
    height: 20px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* ===== NAVIGATION STYLES ===== */
.header__nav {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}

.js--ac-opener {
    position: relative;
}

.nav__item {
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
    padding: 12px 8px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
}

.nav__item:hover {
    color: #4a90e2;
    background: rgba(74, 144, 226, 0.1);
    transform: translateY(-1px);
}

.nav__item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #4a90e2;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav__item:hover::after {
    width: 80%;
}

.nav__item.current {
    color: #4a90e2;
    font-weight: 600;
}

/* ===== DROPDOWN NAVIGATION ===== */
.header__subnav {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.header__subnav .grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== GRID SYSTEM ===== */
.grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.grid-25 {
    width: 25%;
    float: left;
}

.grid-33 {
    width: 33.333%;
    float: left;
}

.grid-50 {
    width: 50%;
    float: left;
}

.grid-66 {
    width: 66.666%;
    float: left;
}

.grid-75 {
    width: 75%;
    float: left;
}

.grid-100 {
    width: 100%;
}

.clear {
    clear: both;
}

.title-box h3.title {
    color: #4a90e2;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.nav-box .nav__item {
    display: block;
    margin: 8px 0;
    padding: 12px 16px;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-box .nav__item:hover {
    background: rgba(74, 144, 226, 0.2);
    color: #ffffff;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
}

.nav-box .nav__item::after {
    display: none;
}

/* ===== MAIN CONTENT STYLES ===== */
.main {
    min-height: 100vh;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero__content {
    max-width: 800px;
    padding: 0 20px;
}

.hero__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero__subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero__button {
    display: inline-block;
    padding: 15px 30px;
    background: rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
}

.hero__button:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about, .services {
    padding: 80px 0;
    background: white;
}

.about__title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

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

.about__text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.about__emphasis {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4a90e2;
    margin: 30px 0 !important;
}

.about__button-container {
    margin-top: 40px;
}

.about__button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #4a90e2, #357abd);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.about__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.company-link-button {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px;
    background: linear-gradient(45deg, #4a90e2, #357abd);
    color: white !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    border: none;
}

.company-link-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
    background: linear-gradient(45deg, #357abd, #2968a3);
}

/* ===== SERVICES GRID ===== */
.services {
    background: #f8f9fa;
}

.services__title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

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

.services__item {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.services__item:hover {
    transform: translateY(-5px);
}

.services__icon {
    font-size: 3rem;
    color: #4a90e2;
    margin-bottom: 20px;
}

.services__item-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.services__item-text {
    color: #666;
}

/* ===== FOOTER STYLES ===== */
footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px 0;
    position: relative;
}

.footer__nav {
    margin-bottom: 30px;
}

.footer__nav dt {
    margin-bottom: 10px;
}

.footer__nav dt a {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.footer__nav dd {
    margin: 5px 0;
    margin-left: 0;
}

.footer__nav dd a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__nav dd a:hover {
    color: white;
}

.footer__bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.footer__logo {
    height: 20px;
    width: auto;
    margin-bottom: 10px;
}

.copyright {
    color: #999;
    font-size: 0.9rem;
}

/* ===== UTILITY CLASSES ===== */
.hide-on-mobile {
    display: block;
}

.u-inactive {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===== FONT SIZE UTILITIES ===== */
.font-42pt {
    font-size: 42px;
}

.font-30pt--on-mobile {
    font-size: 42px;
}

.half-margin {
    margin-bottom: 0.5rem;
}

/* ===== LAYOUT UTILITIES ===== */
.w33 {
    width: 33.333%;
}

.h400 {
    height: 400px;
}

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

@media (max-width: 768px) {
    .font-30pt--on-mobile {
        font-size: 30px;
    }
}

.totop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #4a90e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 100;
}

.totop.show {
    opacity: 1;
}

.totop:hover {
    background: #357abd;
    transform: translateY(-2px);
}

.arw--up {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid white;
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 768px) {
    .show-on-mobile {
        display: block !important;
    }
    
    .hide-on-mobile {
        display: none !important;
    }
    
    /* デスクトップヘッダーをモバイルで非表示 */
    header {
        display: none !important;
    }
    
    /* モバイルヘッダーを確実に表示 */
    .m--header {
        display: block !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        z-index: 9999 !important;
    }
    
    /* ハンバーガーメニューを確実に表示 */
    .m-menu {
        display: block !important;
        visibility: visible !important;
    }
    
    /* モバイルでのbody調整 */
    body {
        padding-top: 50px !important;
    }
}

/* より広い範囲でのモバイル対応 */
@media screen and (max-width: 1024px) and (orientation: portrait), 
       screen and (max-width: 768px) {
    .show-on-mobile {
        display: block !important;
    }
    
    .m--header {
        display: block !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        z-index: 9999 !important;
        background: #000000 !important;
    }
    
    .m-menu {
        display: block !important;
        visibility: visible !important;
    }
    
    header:not(.m--header) {
        display: none !important;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__subtitle {
        font-size: 1rem;
    }
    
    .about, .services {
        padding: 60px 0;
    }
    
    .about__title, .services__title {
        font-size: 2rem;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .grid-33, .grid-66 {
        width: 100%;
        float: none;
    }
}

/* ===== SUBPAGE SPECIFIC STYLES ===== */
.bb {
    background-size: cover;
    background-position: center;
    padding: 100px 0 60px 0;
    text-align: center;
    color: white;
}

.bb__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== COMPANY PAGE SPECIFIC ===== */
.white-knockout {
    background: white;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.subsection {
    margin: 40px 0;
}

.subsection--x2 {
    margin: 60px 0;
}

.font-serif {
    font-family: 'Noto Serif JP', serif;
}

.font-normal {
    font-weight: 400;
}

.font-24pt {
    font-size: 24px;
}

.font-18pt {
    font-size: 18px;
}

.font-16pt {
    font-size: 16px;
}

.font-16pt--on-mobile {
    font-size: 16px;
}

.font-18pt--on-mobile {
    font-size: 18px;
}

/* ===== MESSAGE BANNER ===== */
.message-banner {
    display: block;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.9), rgba(26, 35, 126, 0.7)), 
                url('../images/modern-office-skyline.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 40px;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.3s ease;
    margin: 40px 0;
}

.message-banner:hover {
    transform: translateY(-3px);
}

.message-banner h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.message-banner p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: center;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    font-weight: 600;
}

.message-banner .ceo {
    text-align: right;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.message-banner .name {
    margin-left: 10px;
    font-weight: 600;
}

/* ===== GALLERY STYLES ===== */
.gallery {
    display: flex;
    width: 100%;
    min-height: 400px;
}

.gallery__unit {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery__unit:hover {
    transform: scale(1.05);
    z-index: 2;
}

.gallery__unit.company-info {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
}

.gallery__unit.members {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('../images/business-handshake.jpg');
    background-size: cover;
    background-position: center;
}

.gallery__unit.business {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
}

.gallery__unit .inner {
    text-align: center;
    padding: 40px 20px;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
}

.gallery__unit .inner span {
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* ===== BUTTON STYLES ===== */
.normal-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.normal-btn--primary {
    background: linear-gradient(45deg, #4a90e2, #357abd);
    color: white;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.normal-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.with-arw:after {
    content: " →";
    margin-left: 8px;
}

/* ===== RESPONSIVE FOR GALLERY ===== */
@media (max-width: 768px) {
    .gallery {
        flex-direction: column;
        min-height: auto;
    }
    
    .gallery__unit {
        min-height: 200px;
    }
    
    .font-16pt--on-mobile,
    .font-18pt--on-mobile {
        font-size: 14px;
    }
}

.subdir__bb {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1926&q=80');
    background-size: cover;
    background-position: center;
}

.company__bb {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1950&q=80');
}

.business__bb {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
}

.news__bb {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1504711434969-e33886168f5c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
}

.contact__bb {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2074&q=80');
}

.members__bb {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80');
}

.bb h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.bb span {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ===== CONTENT SECTIONS ===== */
section {
    padding: 60px 0;
    background: white;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

section p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* ===== CONTACT FORM STYLES ===== */
.contact-info {
    text-align: center;
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-info h2 {
    margin-bottom: 30px;
    color: #333;
}

.contact-email {
    font-size: 1.5rem;
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
}

.contact-email:hover {
    color: #357abd;
}

/* ===== MESSAGE PAGE STYLES ===== */
.message__signature {
    max-width: 200px;
    margin: 20px 0;
}

.message__content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.message__content h3 {
    color: #4a90e2;
    margin-bottom: 20px;
}

/* ===== TABLE STYLES ===== */
.tbl--normal {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.tbl--normal th {
    background: #f8f9fa;
    color: #333;
    font-weight: 600;
    padding: 20px;
    text-align: left;
    border-bottom: 2px solid #e9ecef;
    width: 35%;
}

.tbl--normal td {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    color: #555;
    font-size: 1.1rem;
}

.tbl--normal tr:last-child td,
.tbl--normal tr:last-child th {
    border-bottom: none;
}

.tbl--normal tr:hover {
    background: rgba(74, 144, 226, 0.05);
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-intro {
    margin: 60px 0;
}

.email-contact-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 60px 40px;
    margin: 40px auto;
    max-width: 600px;
    border: 1px solid #e9ecef;
}

.email-icon i {
    display: block;
    font-size: 3rem;
    color: #4a90e2;
    margin-bottom: 20px;
}

.email-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.email-content p {
    margin: 15px 0;
}

#email-address {
    font-size: 1.8rem;
    color: #4a90e2 !important;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

#email-address:hover {
    color: #357abd !important;
    text-decoration: underline;
}

/* ===== GRID POSITIONING ===== */
.grid-90 {
    width: 90%;
    float: left;
}

.push-5 {
    margin-left: 5%;
}

/* ===== SECTION WRAP ===== */
.section-wrap {
    padding: 60px 0;
    background: #f8f9fa;
}

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

.section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin: 20px 0;
}

/* ===== LEGAL PAGES STYLES ===== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background: white;
}

.legal-content h2 {
    color: #4a90e2;
    margin-bottom: 20px;
    text-align: left;
}

.legal-content h3 {
    color: #333;
    margin: 30px 0 15px 0;
    text-align: left;
}

.legal-content ol, .legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}