/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Member Modal Styles */
.member-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease-out;
}

.member-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 
                0 0 0 1px rgba(255, 255, 255, 0.3);
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease-out;
    position: relative;
}

.member-modal-header {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.modal-close {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 1);
    color: #333;
    transform: scale(1.1);
}

.member-modal-body {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px;
}

.member-detail-image {
    text-align: center;
}

.modal-member-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.member-detail-info {
    text-align: center;
}

.modal-member-role {
    color: #00A8E6;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    white-space: pre-line;
}

.modal-member-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.modal-member-name-jp {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.member-biography,
.member-skills {
    margin-bottom: 30px;
    text-align: left;
}

.member-biography h3,
.member-skills h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid rgba(0, 168, 230, 0.3);
}

.modal-member-bio {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}


.modal-member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    background: linear-gradient(135deg, rgba(0, 168, 230, 0.1), rgba(0, 168, 230, 0.2));
    color: #00A8E6;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(0, 168, 230, 0.3);
    backdrop-filter: blur(10px);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Design for Modal */
@media (max-width: 768px) {
    .member-modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .member-modal-body {
        padding: 30px 20px;
        gap: 25px;
    }
    
    .modal-member-photo {
        width: 150px;
        height: 150px;
    }
    
    .modal-member-name {
        font-size: 2rem;
    }
    
    .member-modal-body {
        flex-direction: column;
    }
    
    .member-detail-info {
        text-align: center;
    }
}

@media (min-width: 769px) {
    .member-modal-body {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .member-detail-image {
        flex: 0 0 300px;
        text-align: center;
    }
    
    .member-detail-info {
        flex: 1;
        text-align: left;
    }
    
    .modal-member-photo {
        width: 250px;
        height: 250px;
    }
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.header.header-hidden {
    transform: translateY(-100%);
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-image {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: brightness(1.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: clamp(5px, 2vw, 30px);
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: clamp(0.6rem, 1.5vw, 1rem);
    white-space: nowrap;
}

.nav-link:hover {
    color: #00A8E6;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-btn {
    padding: clamp(3px, 1vw, 5px) clamp(5px, 1.5vw, 8px);
    border-radius: 15px;
    transition: all 0.3s ease;
    font-size: clamp(0.5rem, 1.2vw, 0.9rem);
}

.lang-btn.active {
    background: #00A8E6;
    color: white !important;
}

.lang-btn:hover {
    background: #00A8E6;
    color: white !important;
}

.lang-separator {
    color: #999;
    margin: 0 2px;
}

.recruit-btn {
    background: #00A8E6;
    color: white !important;
    padding: clamp(6px, 1vw, 10px) clamp(10px, 2vw, 20px);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: clamp(0.6rem, 1.5vw, 1rem);
    white-space: nowrap;
}

.recruit-btn:hover {
    background: #0088CC;
    transform: translateY(-2px);
}

.external-icon {
    width: clamp(12px, 2vw, 16px);
    height: clamp(12px, 2vw, 16px);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    padding: 0;
    background: transparent;
    border: none;
    outline: none;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease-in-out;
    transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #333;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-top: 120px;
    margin-bottom: 120px;
    line-height: 1.2;
    color: white;
    white-space: nowrap;
    font-size: min(4rem, 12vw);
}

.mobile-br {
    display: none;
}

.sentence {
    display: block;
    opacity: 0;
}

.hero-btn {
    display: inline-block;
    background: #FF8250;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 130, 80, 0.3);
}

.hero-btn:hover {
    background: #E66A3E;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 130, 80, 0.4);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#scrollVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* Vision Section */
.vision-section {
    padding: 120px 0;
    background: #f8f9fa;
}

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

.vision-label {
    color: #00A8E6;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.vision-title {
    font-size: min(3rem, 8vw);
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.3;
    color: #333;
}

.vision-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #00A8E6;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #00A8E6;
}

.vision-btn:hover {
    background: transparent;
    color: #00A8E6;
    transform: translateY(-2px);
}

.arrow-icon {
    width: 20px;
    height: 20px;
}

/* Product Section */
.product-section {
    position: relative;
    background: #00A8E6;
    color: white;
    overflow: hidden;
}

.product-section-round {
    border-radius: 100%;
    padding: 40px 0;
    position: relative;
}

#product-section {
    background: linear-gradient(135deg, #666666 0%, #000000 100%) !important;
}

#product-section .product-btn.primary {
    color: #000000;
}

#product-section .product-btn.primary:hover {
    color: white;
}

#product-section .product-btn.secondary:hover {
    color: #000000;
}


.product-section-header {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-section-header.reverse {
    flex-direction: row-reverse;
}

.newt-logo {
    margin-bottom: 20px;
}

.newt-logo svg {
    width: 200px;
    height: 80px;
}

.product-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-title {
    font-size: min(2.5rem, 6vw);
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.product-name {
    font-size: 3rem;
    font-weight: 800;
}

.product-reading {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 500px;
}

.product-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.product-btn {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.product-btn.primary {
    background: white;
    color: #00A8E6;
    border: 2px solid white;
}

.product-btn.primary:hover {
    background: transparent;
    color: white;
}

.product-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.product-btn.secondary:hover {
    background: white;
    color: #00A8E6;
}

.product-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* News Section */
.news-section {
    padding: 120px 0;
    background: white;
}

.news-title {
    color: #00A8E6;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
}

.news-list {
    display: grid;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.news-item {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.news-image {
    flex-shrink: 0;
    width: 320px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.05);
}


.news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
}

.news-date {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.news-category {
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.news-category.press {
    background: #e3f2fd;
    color: #1976d2;
}

.news-category.info {
    background: #f3e5f5;
    color: #7b1fa2;
}

.news-category.update {
    background: #e8f5e8;
    color: #388e3c;
}


.news-headline {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #333;
}

.news-summary {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.news-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-item-link:hover {
    text-decoration: none;
    color: inherit;
}

.news-more-section {
    margin-top: 80px;
    text-align: center;
}

.news-more-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: #00A8E6;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.news-more-btn:hover {
    background: #0088CC;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.news-more-btn::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.news-more-btn:hover::after {
    transform: translateX(3px);
}




/* Product Gallery Section */
.product-gallery-section {
    padding: 120px 0;
    background: #f8f9fa;
}

.product-gallery-title {
    color: #00A8E6;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
}

.product-gallery {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
    mask: linear-gradient(
        to right,
        transparent 0%,
        #000 5%,
        #000 95%,
        transparent 100%
    );
    display: flex;
    white-space: nowrap;
}

.product-track {
    display: inline-flex;
    animation: scroll 15s linear infinite;
    gap: 30px;
    align-items: center;
}

.product-img {
    width: 300px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 15px;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-img:last-child {
    margin-right: 30px;
}

.product-img:hover {
    transform: scale(1.15);
    z-index: 100;
    position: relative;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-app {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.app-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.app-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
}

.app-downloads {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.download-btn {
    height: 40px;
    width: auto;
}

.qr-image {
    width: 80px;
    height: 80px;
}

.contact-group {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.contact-btn {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #333;
    border: 2px solid white;
}

.contact-btn:hover {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.sns-btn {
    display: block;
    transition: transform 0.3s ease;
}

.sns-btn:hover {
    transform: scale(1.1);
}

.sns-image {
    width: 40px;
    height: 40px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #555;
    color: #999;
    font-size: 0.9rem;
}

/* Animation Classes */
.animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: min(3rem, 10vw);
    }
    
    .vision-title {
        font-size: min(2.5rem, 7vw);
    }
    
    .product-title {
        font-size: min(2rem, 5vw);
    }
    
    .product-section-header {
        flex-direction: column !important;
        text-align: center;
        gap: 40px;
    }
    
    .product-section-header.reverse {
        flex-direction: column !important;
        text-align: center;
        gap: 40px;
    }
    
    .product-section-header .container,
    .product-section-header.reverse .container {
        order: 2;
    }
    
    .product-image {
        order: 1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .contact-group {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .logo-image {
        height: 32px;
        max-width: 150px;
    }
    
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background-color: white;
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 100px 0;
        z-index: 998;
        justify-content: flex-start;
        gap: 30px;
    }
    
    .nav-link {
        font-size: 1rem;
    }
    
    .lang-btn {
        font-size: 0.9rem;
        padding: 5px 8px;
    }
    
    .recruit-btn {
        font-size: 1rem;
        padding: 10px 20px;
    }
    
    .external-icon {
        width: 16px;
        height: 16px;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu.active ~ .hamburger {
        z-index: 1000;
        position: relative;
    }
    
    .nav-item {
        margin: 15px 0;
    }
    
    .hamburger {
        display: flex;
        z-index: 1000;
        position: relative;
    }
    
    .hero-title {
        font-size: min(3.5rem, 16vw);
        white-space: normal;
    }
    
    .mobile-br {
        display: inline;
    }
    
    .vision-title {
        font-size: min(1.8rem, 5vw);
    }
    
    .product-title {
        font-size: min(1.8rem, 5.5vw);
    }
    
    .product-name {
        font-size: 2.2rem;
    }
    
    .news-item {
        flex-direction: column;
    }
    
    .news-image {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }
    
    .product-images {
        animation-duration: 20s;
    }
    
    .product-img {
        width: 250px;
    }
    
    .phone-mockup {
        max-width: 200px;
    }
    
    .footer-app {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .sns-image {
        width: 36px;
        height: 36px;
    }
    
    .contact-group {
        gap: 13px;
        justify-content: center;
    }
    
    .footer-logo-img {
        height: 42px;
        max-width: 140px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-image {
        height: 28px;
        max-width: 120px;
    }
    
    .footer-logo-img {
        height: 35px;
        max-width: 130px;
    }
    
    .sns-image {
        width: 32px;
        height: 32px;
    }
    
    .contact-group {
        gap: 12px;
    }
    
    .hero-title {
        font-size: min(2rem, 14vw);
        white-space: normal;
    }
    
    
    .product-name {
        font-size: 2rem;
    }
    
    .product-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .news-title,
    .product-gallery-title {
        font-size: 2rem;
    }
    
    .product-img {
        width: 200px;
    }
    
    .phone-mockup {
        max-width: 160px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .footer-logo-img {
        height: 30px;
        max-width: 110px;
    }
    
    .sns-image {
        width: 28px;
        height: 28px;
    }
    
    .contact-group {
        gap: 10px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* About Page Styles */

/* About Header Section */
.about-header {
    padding: 140px 0 60px;
    background: white;
    border-bottom: 1px solid #eee;
}

.about-title {
    font-size: clamp(1.5rem, 8vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.about-nav {
    max-width: 800px;
    margin: 0 auto;
}

.about-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-menu-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.about-menu-link:hover {
    color: #00A8E6;
    border-color: #00A8E6;
}

/* Navigation Active State */
.nav-link.active {
    color: #00A8E6;
    font-weight: 600;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
    background: white;
}

.content-section.gray-bg {
    background: #f8f9fa;
}

.content-section.dark-gray-bg{
    background: #eeefef;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 max(50px, 5vw);
}

.section-label {
    color: #00A8E6;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    text-align: left;
}

.section-description.mission-vision {
    font-size: 2.2rem;
    line-height: 1.8;
    color: #333;
    text-align: center;
    font-weight: 700;
}


/* Company Info */
.company-info {
    max-width: 600px;
    margin: 40px auto 0;
    text-align: left;
}

.company-row {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.company-row:last-child {
    border-bottom: none;
}

.company-label {
    flex: 0 0 120px;
    font-weight: 600;
    color: #333;
}

.company-value {
    flex: 1;
    color: #666;
    line-height: 1.6;
}


/* Responsive Design for About Page */
@media (max-width: 1024px) {
    
    .about-nav {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .company-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .company-label {
        flex: none;
        font-weight: 700;
    }
}

@media (max-width: 768px) {
    .about-header {
        padding: 120px 0 40px;
    }
    
    .about-menu {
        flex-direction: column;
        gap: 15px;
    }
    
    .about-menu-link {
        font-size: 1rem;
        padding: 8px 16px;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
}

@media (max-width: 480px) {
    .about-header {
        padding: 100px 0 30px;
    }
    
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    
    .company-label {
        font-size: 0.9rem;
    }
    
    .company-value {
        font-size: 0.9rem;
    }
}

/* Products Page Styles */

/* Products Header Section */
.products-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.products-label {
    color: #00A8E6;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.products-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
    line-height: 1.2;
}

.products-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

/* Main Product Section */
.main-product-section {
    background: #00A8E6;
    color: white;
    position: relative;
    overflow: hidden;
}

.main-product-section.gray-gradient-bg {
    background: linear-gradient(135deg, #666666 0%, #000000 100%) !important;
}

.main-product-section.gray-gradient-bg .product-btn.primary {
    color: #000000;
}

.main-product-section.gray-gradient-bg .product-btn.primary:hover {
    color: white;
}

.main-product-section.gray-gradient-bg .product-btn.secondary:hover {
    color: #000000;
}

.main-product-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 30px 0;
    position: relative;
}

.main-product-text {
    flex: 1;
    min-width: 0;
    z-index: 2;
}

.main-product-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.main-product-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.95;
}

.main-product-features {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    padding: 12px 0;
    border-left: 2px solid rgba(255, 255, 255, 0.3);
    padding-left: 15px;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.feature-item p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.main-product-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Other Products Section */
.other-products-section {
    padding: 120px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 20px;
    line-height: 1.6;
}

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

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 0;
}

.product-card:hover .product-card-image img {
    transform: scale(1.1);
}

.product-card-content {
    padding: 30px;
}

.product-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.product-card-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.product-card-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.tag {
    background: #f0f8ff;
    color: #00A8E6;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.product-card-btn {
    display: inline-block;
    background: #00A8E6;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #00A8E6;
}

.product-card-btn:hover {
    background: transparent;
    color: #00A8E6;
    transform: translateY(-2px);
}

/* Technology Section */
.technology-section {
    padding: 120px 0;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.tech-category {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.tech-category h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #00A8E6;
}

.tech-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tech-item {
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 500;
    color: #333;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #00A8E6 0%, #0088CC 100%);
    color: white;
    text-align: center;
}

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

.cta-title {
    font-size: clamp(1rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    white-space: nowrap;
    text-align: center;
    width: 100%;
    display: block;
}

.cta-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid white;
}

.cta-btn.primary {
    background: white;
    color: #00A8E6;
}

.cta-btn.primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
}

.cta-btn.secondary:hover {
    background: white;
    color: #00A8E6;
    transform: translateY(-3px);
}

/* Products Page Responsive Design */
@media (max-width: 1024px) {
    .main-product-content {
        flex-direction: column;
        text-align: center;
        gap: 50px;
        padding: 80px 0;
        align-items: center;
        justify-content: center;
    }
    
    .main-product-text {
        order: 2;
        max-width: 600px;
        width: 100%;
    }
    
    .main-product-image {
        order: 1;
        max-width: 400px;
        width: 100%;
    }
    
    .newt-logo {
        margin-bottom: 15px;
    }
    
    .newt-logo svg {
        width: 180px;
        height: 70px;
    }
    
    .main-product-features {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
    }
    
    .feature-item {
        text-align: center;
        padding: 20px 15px;
        background: rgba(255, 255, 255, 0.12);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
    }
    
    .feature-item::before {
        width: 40px;
        height: 3px;
        margin-bottom: 12px;
    }
    
    .feature-item h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .feature-item p {
        font-size: 0.9rem;
        opacity: 0.9;
        margin: 0;
        line-height: 1.5;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    
    .tech-stack {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
    
}

@media (max-width: 768px) {
    .products-header {
        padding: 120px 0 60px;
    }
    
    .main-product-content {
        padding: 60px 0;
        gap: 40px;
        align-items: center;
        justify-content: center;
    }
    
    .main-product-text {
        max-width: 500px;
        width: 100%;
    }
    
    .main-product-image {
        max-width: 300px;
        width: 100%;
    }
    
    .main-product-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .product-name {
        font-size: 2.2rem;
        display: block;
        margin: 10px 0;
    }
    
    .product-reading {
        font-size: 1.2rem;
        font-weight: 400;
        opacity: 0.8;
    }
    
    .main-product-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .main-product-features {
        gap: 15px;
        margin: 25px 0;
    }
    
    .feature-item {
        padding: 15px 12px;
    }
    
    .feature-item::before {
        width: 35px;
        height: 3px;
        margin-bottom: 10px;
    }
    
    .feature-item h4 {
        font-size: 1rem;
        margin-bottom: 6px;
        letter-spacing: 0.3px;
    }
    
    .product-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        justify-content: center;
        display: flex;
    }
    
    .product-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .other-products-section {
        padding: 100px 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .product-card-content {
        padding: 25px;
    }
    
    .technology-section,
    .cta-section {
        padding: 100px 0;
    }
    
    .tech-stack {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 25px;
    }
    
    .tech-category {
        padding: 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .products-header {
        padding: 100px 0 50px;
    }
    
    .products-title {
        font-size: 2rem;
    }
    
    .products-description {
        font-size: 1rem;
    }
    
    .main-product-content {
        padding: 40px 0;
        gap: 30px;
        align-items: center;
        justify-content: center;
    }
    
    .main-product-text {
        max-width: 400px;
        width: 100%;
    }
    
    .main-product-image {
        max-width: 250px;
        width: 100%;
    }
    
    .main-product-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .product-name {
        font-size: 1.8rem;
        display: block;
        margin: 8px 0;
    }
    
    .product-reading {
        font-size: 1rem;
        display: block;
        margin-top: 5px;
    }
    
    .newt-logo {
        margin-bottom: 10px;
    }
    
    .newt-logo svg {
        width: 150px;
        height: 60px;
    }
    
    .main-product-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .main-product-features {
        gap: 12px;
        margin: 20px 0;
    }
    
    .feature-item {
        padding: 12px 8px;
    }
    
    .feature-item::before {
        width: 30px;
        height: 2px;
        margin-bottom: 8px;
    }
    
    .feature-item h4 {
        font-size: 0.9rem;
        margin-bottom: 5px;
        letter-spacing: 0.2px;
    }
    
    .feature-item p {
        font-size: 0.8rem;
    }
    
    .product-btn {
        font-size: 0.9rem;
        padding: 12px 24px;
    }
    
    .feature-item {
        padding-left: 15px;
    }
    
    .feature-item h4 {
        font-size: 1.1rem;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .other-products-section,
    .technology-section,
    .cta-section {
        padding: 80px 0;
    }
    
    .tech-stack {
        grid-template-columns: 1fr;
    }
    
    
    .cta-description {
        font-size: 1rem;
    }
}

/* Services Page Styles */

/* Services Header Section */
.services-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.services-label {
    color: #00A8E6;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.services-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
    line-height: 1.2;
}

.services-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

/* Main Business Section */
.main-business-section {
    padding: 120px 0;
    background: white;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

.business-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.business-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.business-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.business-card:hover .business-img {
    transform: scale(1.1);
}

.business-content {
    padding: 30px;
}

.business-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.business-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.business-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-tag {
    background: #f0f8ff;
    color: #00A8E6;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Services Section */
.services-section {
    padding: 120px 0;
}

.services-list {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 80px;
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-height: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.service-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.service-type {
    background: #00A8E6;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.service-details {
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

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

.detail-label {
    font-weight: 600;
    color: #333;
    flex: 0 0 120px;
}

.detail-value {
    color: #666;
    text-align: right;
    flex: 1;
}

.service-btn {
    display: inline-block;
    background: #00A8E6;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #00A8E6;
}

.service-btn:hover {
    background: transparent;
    color: #00A8E6;
    transform: translateY(-2px);
}

.service-image {
    flex: 0 0 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-mockup {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 400px;
}

.tool-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.tool-image:hover {
    transform: scale(1.05);
}

.api-showcase {
    width: 400px;
}

.code-block {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.code-header {
    background: #2d2d2d;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.code-dots {
    display: flex;
    gap: 8px;
}

.code-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.code-dots span:nth-child(1) {
    background: #ff5f56;
}

.code-dots span:nth-child(2) {
    background: #ffbd2e;
}

.code-dots span:nth-child(3) {
    background: #27ca3f;
}

.code-title {
    color: #888;
    font-size: 0.9rem;
    font-weight: 500;
}

.code-content {
    padding: 20px;
}

.code-content pre {
    margin: 0;
    color: #00A8E6;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Strengths Section */
.strengths-section {
    padding: 120px 0;
    background: #f8f9fa;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.strength-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.strength-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00A8E6, #0088CC);
}

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

.strength-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00A8E6;
    margin-bottom: 20px;
    opacity: 0.8;
}

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

.strength-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

/* Services Page Responsive Design - Medium Screens (769px-1023px) */
@media (max-width: 1023px) and (min-width: 769px) {
    .business-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .services-list {
        margin-top: 60px;
        gap: 50px;
    }
    
    .service-item {
        flex-direction: row;
        text-align: left;
        gap: 35px;
        padding: 40px;
        min-height: 350px;
    }
    
    .service-item.reverse {
        flex-direction: row-reverse;
    }
    
    .service-content {
        flex: 1.3;
    }
    
    .service-image {
        flex: 0 0 280px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .service-title {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .service-type {
        background: #00A8E6;
        color: white;
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        display: inline-block;
    }
    
    .service-description {
        font-size: 0.95rem;
        line-height: 1.7;
        margin: 18px 0 25px;
    }
    
    .service-details {
        margin: 25px 0;
    }
    
    .detail-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        margin-bottom: 8px;
    }
    
    .detail-label {
        font-size: 0.85rem;
        font-weight: 600;
        color: #666;
    }
    
    .detail-value {
        font-size: 0.9rem;
        color: #333;
        text-align: right;
    }
    
    .service-btn {
        background: #00A8E6;
        color: white;
        padding: 12px 25px;
        text-decoration: none;
        border-radius: 25px;
        font-size: 0.9rem;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-block;
    }
    
    .service-btn:hover {
        background: transparent;
        color: #00A8E6;
        border: 2px solid #00A8E6;
        transform: translateY(-2px);
    }
    
    .service-mockup {
        max-width: 220px;
        height: auto;
    }
    
    .tools-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 280px;
    }
    
    .tool-image {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }
    
    .api-showcase {
        max-width: 280px;
    }
    
    .code-block {
        font-size: 0.75rem;
    }
    
    .strengths-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .services-header {
        padding: 120px 0 60px;
    }
    
    .main-business-section,
    .services-section,
    .strengths-section {
        padding: 100px 0;
    }
    
    .business-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 60px;
    }
    
    .business-card {
        padding: 0;
    }
    
    .business-content {
        padding: 25px;
    }
    
    .services-list {
        margin-top: 60px;
        gap: 40px;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
        padding: 30px;
        gap: 25px;
        min-height: auto;
    }
    
    .service-item.reverse {
        flex-direction: column;
    }
    
    .service-content {
        order: 2;
        flex: none;
    }
    
    .service-image {
        order: 1;
        flex: none;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .service-title {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .service-type {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }
    
    .service-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .service-details {
        display: none;
    }
    
    .service-btn {
        font-size: 0.9rem;
        padding: 12px 24px;
    }
    
    .service-header {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .service-mockup {
        max-width: 280px;
    }
    
    .tools-grid {
        width: 100%;
        max-width: 320px;
        gap: 15px;
    }
    
    .tool-image {
        max-width: 140px;
    }
    
    .api-showcase {
        width: 100%;
        max-width: 340px;
    }
    
    .strengths-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 60px;
    }
    
    .strength-card {
        padding: 30px;
    }
    
    .strength-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .services-header {
        padding: 100px 0 50px;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .services-description {
        font-size: 1rem;
    }
    
    .main-business-section,
    .services-section,
    .strengths-section {
        padding: 80px 0;
    }
    
    .business-card {
        padding: 0;
    }
    
    .business-content {
        padding: 20px;
    }
    
    .business-image {
        height: 160px;
    }
    
    .business-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .services-list {
        gap: 30px;
    }
    
    .service-item {
        padding: 20px;
        gap: 20px;
        border-radius: 15px;
    }
    
    .service-title {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .service-type {
        font-size: 0.75rem;
        padding: 6px 12px;
        margin-bottom: 12px;
    }
    
    .service-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .service-btn {
        font-size: 0.8rem;
        padding: 10px 20px;
    }
    
    .service-mockup {
        max-width: 240px;
    }
    
    .tools-grid {
        max-width: 280px;
        gap: 12px;
    }
    
    .tool-image {
        max-width: 120px;
    }
    
    .code-block {
        font-size: 0.75rem;
    }
    
    .api-showcase {
        max-width: 300px;
    }
    
    .strength-card {
        padding: 25px;
    }
    
    .strength-number {
        font-size: 2rem;
    }
    
    .strength-title {
        font-size: 1.2rem;
    }
}

/* News Page Styles */
.news-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #00A8E6 0%, #0088CC 100%);
    color: white;
    text-align: center;
}

.news-hero-content {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.news-hero-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.news-header-label {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.9;
    letter-spacing: 2px;
}

.news-header-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.news-header-description {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

/* News Filter Section */
.news-filter-section {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid #f0f0f0;
}

.news-filter {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid #e0e0e0;
    background: white;
    color: #666;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover {
    border-color: #00A8E6;
    color: #00A8E6;
}

.filter-btn.active {
    background: #00A8E6;
    border-color: #00A8E6;
    color: white;
}

/* Main News Section */
.main-news-section {
    padding: 80px 0;
    background: #fafafa;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.news-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.news-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: none;
}

.news-card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.news-card.featured .news-card-image {
    height: 100%;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #FF6B35;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-card-content {
    padding: 25px;
}

.news-card.featured .news-card-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.news-card-date {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.news-card-category {
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-card-category.press {
    background: #e3f2fd;
    color: #1976d2;
}

.news-card-category.info {
    background: #f3e5f5;
    color: #7b1fa2;
}

.news-card-category.update {
    background: #e8f5e8;
    color: #388e3c;
}

.news-card-headline {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #333;
}

.news-card.featured .news-card-headline {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.news-card-summary {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    color: #00A8E6;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    color: #0088CC;
    transform: translateX(5px);
}

.read-more-btn::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.read-more-btn:hover::after {
    transform: translateX(3px);
}

/* Pagination */
.news-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.pagination-btn {
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    background: white;
    color: #666;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.pagination-btn:hover:not(:disabled) {
    border-color: #00A8E6;
    color: #00A8E6;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 10px;
    align-items: center;
}

.pagination-number {
    width: 40px;
    height: 40px;
    border: 2px solid #e0e0e0;
    background: white;
    color: #666;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-number:hover {
    border-color: #00A8E6;
    color: #00A8E6;
}

.pagination-number.active {
    background: #00A8E6;
    border-color: #00A8E6;
    color: white;
}

.pagination-dots {
    color: #666;
    font-weight: 500;
}

/* Newsletter Section */
.newsletter-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

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

.newsletter-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.newsletter-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.newsletter-input::placeholder {
    color: #666;
}

.newsletter-submit {
    padding: 15px 30px;
    background: #FF6B35;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-submit:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.newsletter-privacy {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Article Page Styles */
.article-header {
    padding: 120px 0 40px;
    background: white;
    border-bottom: 1px solid #f0f0f0;
}

.article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.article-breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-breadcrumb a:hover {
    color: #00A8E6;
}

.breadcrumb-separator {
    color: #999;
}

.breadcrumb-current {
    color: #333;
    font-weight: 500;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.article-date {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.article-category {
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-category.press {
    background: #e3f2fd;
    color: #1976d2;
}

.article-category.info {
    background: #f3e5f5;
    color: #7b1fa2;
}

.article-category.update {
    background: #e8f5e8;
    color: #388e3c;
}

.article-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
    color: #333;
    margin-bottom: 0;
}

/* Article Content Section */
.article-content-section {
    padding: 40px 0 80px;
    background: white;
}

.article-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    margin-bottom: 40px;
}

.article-content {
    max-width: none;
}

.article-image {
    margin-bottom: 40px;
    text-align: center;
}

.article-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.article-body h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin: 40px 0 20px 0;
    border-bottom: 3px solid #00A8E6;
    padding-bottom: 10px;
}

.article-body h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin: 30px 0 15px 0;
}

.article-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.article-body ul {
    margin: 20px 0;
    padding-left: 20px;
}

.article-body li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 10px;
}

.company-info {
    margin: 30px 0;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.info-table tr {
    border-bottom: 1px solid #eee;
}

.info-table td {
    padding: 15px 0;
    vertical-align: top;
}

.info-label {
    font-weight: 600;
    color: #333;
    width: 140px;
    padding-right: 20px;
}

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.contact-info p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.article-closing {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-weight: 600;
    color: #333;
    text-align: center;
}

/* Article Sidebar */
.article-sidebar {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-section {
    margin-bottom: 30px;
}

.sidebar-section:last-child {
    margin-bottom: 0;
}

.sidebar-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    border-bottom: 2px solid #00A8E6;
    padding-bottom: 5px;
}

.related-articles {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-article {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #00A8E6;
    transition: all 0.3s ease;
}

.related-article:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.related-article a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.4;
}

.related-article a:hover {
    color: #00A8E6;
}

.no-related {
    color: #666;
    font-style: italic;
    text-align: center;
    padding: 20px;
}

.category-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-list li a {
    display: block;
    padding: 10px 15px;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-list li a:hover {
    background: #00A8E6;
    color: white;
    transform: translateX(5px);
}

/* Back to News */
.back-to-news {
    text-align: center;
    margin-top: 40px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #00A8E6;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: #0088CC;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 168, 230, 0.3);
}

.back-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.back-btn:hover .back-arrow {
    transform: translateX(-3px);
}

/* Article Page Responsive Design */

/* Large Desktop (1201px and above) - Default styles are applied */

/* Medium Desktop and Tablet Landscape (1025px - 1200px) */
@media (max-width: 1200px) and (min-width: 1025px) {
    .article-wrapper {
        grid-template-columns: 1fr 280px;
        gap: 50px;
    }
    
    .article-sidebar {
        padding: 25px;
    }
    
    .sidebar-title {
        font-size: 1.1rem;
    }
    
    .article-body h2 {
        font-size: 1.7rem;
    }
    
    .article-body h3 {
        font-size: 1.3rem;
    }
}

/* Tablet Portrait and Medium Screens (769px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .article-header {
        padding: 110px 0 35px;
    }
    
    .article-title {
        font-size: clamp(1.8rem, 3.5vw, 2.2rem);
        line-height: 1.4;
    }
    
    .article-content-section {
        padding: 35px 0 70px;
    }
    
    .article-wrapper {
        display: block;
        gap: 0;
    }
    
    .article-content {
        max-width: 100%;
        margin-bottom: 50px;
    }
    
    .article-image {
        margin-bottom: 35px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .article-image img {
        max-width: 100%;
        height: auto;
    }
    
    .article-body {
        max-width: 700px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .article-body h2 {
        font-size: 1.6rem;
        font-weight: 700;
        margin: 35px 0 18px 0;
        border-bottom: 3px solid #00A8E6;
        padding-bottom: 8px;
    }
    
    .article-body h3 {
        font-size: 1.25rem;
        font-weight: 600;
        margin: 28px 0 14px 0;
        color: #333;
    }
    
    .article-body p {
        font-size: 1.05rem;
        line-height: 1.75;
        margin-bottom: 18px;
        color: #444;
    }
    
    .article-body li {
        font-size: 1.05rem;
        line-height: 1.75;
        margin-bottom: 8px;
    }
    
    .article-body ul {
        margin: 18px 0;
        padding-left: 18px;
    }
    
    .info-table td {
        padding: 13px 0;
        font-size: 0.95rem;
    }
    
    .info-label {
        width: 130px;
        padding-right: 18px;
        font-weight: 600;
    }
    
    .contact-info {
        padding: 18px;
        margin: 25px 0;
        background: #f8f9fa;
        border-radius: 10px;
    }
    
    .contact-info p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0;
    }
    
    .article-closing {
        margin-top: 35px;
        padding-top: 18px;
        font-size: 1.05rem;
    }
    
    /* Tablet Sidebar - Horizontal Layout */
    .article-sidebar {
        position: static;
        top: auto;
        background: #f8f9fa;
        border-radius: 12px;
        padding: 30px;
        margin: 0 20px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .sidebar-section {
        margin-bottom: 0;
    }
    
    .sidebar-title {
        font-size: 1.15rem;
        font-weight: 700;
        margin-bottom: 18px;
        border-bottom: 2px solid #00A8E6;
        padding-bottom: 6px;
    }
    
    .category-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .category-list li a {
        padding: 8px 15px;
        font-size: 0.9rem;
        border-radius: 6px;
    }
    
    .no-related {
        padding: 15px;
        font-size: 0.9rem;
    }
    
    /* Back Button for Tablet */
    .back-to-news {
        margin-top: 35px;
        text-align: center;
    }
    
    .back-btn {
        padding: 14px 28px;
        font-size: 0.95rem;
        border-radius: 25px;
    }
}

/* Mobile and Small Tablets (768px and below) */
@media (max-width: 768px) {
    .article-header {
        padding: 100px 0 30px;
    }
    
    .article-breadcrumb {
        font-size: 0.8rem;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .article-meta {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        text-align: center;
    }
    
    .article-title {
        text-align: center;
        padding: 0 15px;
    }
    
    .article-content-section {
        padding: 30px 0 60px;
    }
    
    .article-wrapper {
        display: block;
        gap: 0;
    }
    
    .article-content {
        margin-bottom: 40px;
    }
    
    .article-image {
        margin-bottom: 30px;
        text-align: center;
        padding: 0 15px;
    }
    
    .article-image img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }
    
    .article-body {
        padding: 0 20px;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
        margin: 30px 0 15px 0;
        border-bottom: 2px solid #00A8E6;
        padding-bottom: 8px;
    }
    
    .article-body h3 {
        font-size: 1.2rem;
        margin: 25px 0 12px 0;
    }
    
    .article-body p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 16px;
    }
    
    .article-body li {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 8px;
    }
    
    .article-body ul {
        margin: 16px 0;
        padding-left: 16px;
    }
    
    .info-table {
        font-size: 0.9rem;
        margin: 20px 0;
    }
    
    .info-table td {
        padding: 12px 0;
        word-break: break-word;
    }
    
    .info-label {
        width: 110px;
        padding-right: 12px;
        font-size: 0.9rem;
        font-weight: 600;
    }
    
    .contact-info {
        padding: 16px;
        margin: 20px 0;
        background: #f8f9fa;
        border-radius: 8px;
    }
    
    .contact-info p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin: 0;
    }
    
    .article-closing {
        margin-top: 30px;
        padding-top: 16px;
        font-size: 1rem;
        text-align: center;
    }
    
    /* Mobile Sidebar - Vertical Stack */
    .article-sidebar {
        position: static;
        top: auto;
        background: #f8f9fa;
        border-radius: 10px;
        padding: 25px;
        margin: 0 20px;
        display: block;
    }
    
    .sidebar-section {
        margin-bottom: 25px;
    }
    
    .sidebar-section:last-child {
        margin-bottom: 0;
    }
    
    .sidebar-title {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 15px;
        border-bottom: 2px solid #00A8E6;
        padding-bottom: 5px;
        text-align: center;
    }
    
    .category-list {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .category-list li a {
        padding: 10px 15px;
        font-size: 0.9rem;
        text-align: center;
        border-radius: 8px;
    }
    
    .no-related {
        padding: 20px;
        font-size: 0.9rem;
        text-align: center;
    }
    
    .back-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .article-header {
        padding: 80px 0 25px;
    }
    
    .article-breadcrumb {
        font-size: 0.75rem;
        justify-content: center;
        text-align: center;
    }
    
    .article-meta {
        justify-content: center;
        gap: 8px;
    }
    
    .article-title {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
        text-align: center;
        padding: 0 10px;
        line-height: 1.3;
    }
    
    .article-content-section {
        padding: 25px 0 50px;
    }
    
    .article-wrapper {
        display: block;
        gap: 0;
    }
    
    .article-content {
        margin-bottom: 35px;
    }
    
    .article-image {
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .article-image img {
        border-radius: 6px;
    }
    
    .article-body {
        padding: 0 15px;
    }
    
    .article-body h2 {
        font-size: 1.3rem;
        margin: 25px 0 12px 0;
        padding-bottom: 6px;
        border-bottom: 2px solid #00A8E6;
    }
    
    .article-body h3 {
        font-size: 1.1rem;
        margin: 20px 0 10px 0;
    }
    
    .article-body p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 14px;
    }
    
    .article-body li {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 6px;
    }
    
    .article-body ul {
        margin: 14px 0;
        padding-left: 14px;
    }
    
    .info-table {
        font-size: 0.85rem;
        margin: 18px 0;
    }
    
    .info-table td {
        padding: 10px 0;
        word-break: break-word;
    }
    
    .info-label {
        width: 90px;
        padding-right: 8px;
        font-size: 0.85rem;
        font-weight: 600;
    }
    
    .contact-info {
        padding: 14px;
        margin: 18px 0;
        border-radius: 6px;
    }
    
    .contact-info p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .article-closing {
        margin-top: 25px;
        padding-top: 14px;
        font-size: 0.95rem;
        text-align: center;
    }
    
    /* Small Mobile Sidebar */
    .article-sidebar {
        padding: 20px;
        margin: 0 15px;
        border-radius: 8px;
    }
    
    .sidebar-section {
        margin-bottom: 20px;
    }
    
    .sidebar-title {
        font-size: 1rem;
        margin-bottom: 12px;
        padding-bottom: 4px;
    }
    
    .category-list li a {
        padding: 8px 12px;
        font-size: 0.85rem;
        border-radius: 6px;
    }
    
    .no-related {
        padding: 16px;
        font-size: 0.85rem;
    }
    
    .back-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        border-radius: 20px;
    }
}



/* Responsive News Styles */
@media (max-width: 768px) {
    .news-header {
        padding: 100px 0 60px;
    }
    
    .news-filter {
        gap: 15px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .main-news-section {
        padding: 60px 0;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .news-card.featured {
        grid-template-columns: 1fr;
    }
    
    .news-card.featured .news-card-image {
        height: 200px;
    }
    
    .news-card.featured .news-card-content {
        padding: 30px;
    }
    
    .news-card.featured .news-card-headline {
        font-size: 1.3rem;
    }
    
    .news-pagination {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .pagination-numbers {
        gap: 8px;
    }
    
    .pagination-number {
        width: 35px;
        height: 35px;
    }
    
    .newsletter-section {
        padding: 80px 0;
    }
    
    .form-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-submit {
        align-self: center;
        min-width: 150px;
    }
}

@media (max-width: 480px) {
    .news-header {
        padding: 80px 0 40px;
    }
    
    .news-filter-section {
        padding: 30px 0;
    }
    
    .main-news-section {
        padding: 40px 0;
    }
    
    .news-card-content {
        padding: 20px;
    }
    
    .news-card.featured .news-card-content {
        padding: 25px;
    }
    
    .news-card-headline {
        font-size: 1.1rem;
    }
    
    .news-card.featured .news-card-headline {
        font-size: 1.2rem;
    }
    
    .newsletter-section {
        padding: 60px 0;
    }
}

/* Member Page Styles */
.member-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.member-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.member-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.members-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.member-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.member-image {
    margin-bottom: 25px;
}

.member-photo {
    width: 250px;
    height: 250px;
    border-radius: 15px;
    object-fit: cover;
    border: 4px solid #e9ecef;
    transition: border-color 0.3s ease;
}

.member-card:hover .member-photo {
    border-color: #00A8E6;
}

.member-info {
    color: #333;
}

.member-role {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 10px;
    font-weight: 500;
}

.member-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.member-name-jp {
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
    text-align: center;
}

.member-btn {
    background: transparent;
    border: 2px solid #00A8E6;
    color: #00A8E6;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.member-btn:hover {
    background: #00A8E6;
    color: white;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .members-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .member-card {
        padding: 25px;
    }
    
    .member-photo {
        width: 200px;
        height: 200px;
    }
}