/* --- Global Styles & Variables --- */
:root {
    --primary-black: #1a1a1a;
    --primary-white: #ffffff;
    --primary-red: #b10d03;
    --primary-red-hover: #8a0a02;
    --light-gray: #f7f7f7;
    --text-gray: #666666;
    --border-gray: #e0e0e0;
    --light-red-bg: #fbe9e7;
}

/* --- Base Typography & Layout --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 30px; /* Direct line-height in px */
    color: var(--primary-black);
    background-color: var(--primary-white);
    font-size: 16px; /* Direct font-size in px */
}

.container {
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Headings --- */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-black);
}

h1 { 
    font-size: 48px; 
    color: var(--primary-white);
}
h2 { 
    font-size: 36px;
    margin-bottom: 2rem;
    color: var(--primary-black);
    position: relative;
    padding-bottom: 20px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}
h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-red);
    border-radius: 2px;
}
h3 { 
    font-size: 20px;
    margin-bottom: 12px;
}

/* --- Text Elements --- */
p {
    margin-bottom: 1rem;
    color: var(--text-gray);
    font-size: 16px;
    line-height: 30px;
}

a {
    color: var(--primary-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover { color: var(--primary-red-hover); }

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-red);
    color: var(--primary-white);
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-2px);
}

/* --- Section Styles --- */
section {
    padding: 80px 0;
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(to right, rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.7)), url('https://via.placeholder.com/1920x1080/1a1a1a/ffffff?text=Product+Hero+Image') no-repeat center center/cover;
    color: var(--primary-white);
    text-align: center;
    padding: 120px 0;
}

.hero h1 {
    margin-bottom: 1rem;
}

.hero p {
    font-size: 18px;
    color: #ddd;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

/* --- Description Section --- */
.description {
    background-color: var(--light-gray);
}

.description-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.description-text h2 {
    text-align: left;
    font-size: 20px;
    line-height: 1.8;
    color: #b10d03;
    font-weight: 700;
}
.description-text h2::after {
    left: 0;
    transform: none;
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 30px;
}

.feature-list li::before {
    content: '✓';
    display: inline-block;
    width: 25px;
    height: 25px;
    background-color: var(--primary-red);
    color: var(--primary-white);
    text-align: center;
    line-height: 25px;
    border-radius: 50%;
    margin-right: 15px;
    margin-top: 5px;
    flex-shrink: 0;
}

.description-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* --- Specifications Section --- */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    font-size: 14px; /* Minimum font size */
}

.specs-table th, .specs-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-gray);
    line-height: 1.5;
}

.specs-table th {
    background-color: var(--primary-black);
    color: var(--primary-white);
    font-weight: 600;
}

.specs-table tr:nth-child(even) {
    background-color: var(--light-gray);
}

.specs-table tr:hover {
    background-color: var(--light-red-bg);
}

/* --- Applications Section --- */
.applications {
    text-align: center;
}

.applications h2 {
    margin-bottom: 3rem;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.app-card {
    background-color: var(--light-gray);
    padding: 40px 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.app-icon {
    font-size: 48px;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.app-card p {
    font-size: 14px; /* Minimum font size */
    line-height: 1.6;
}

/* --- Related Products Section --- */
.related-products {
    background-color: var(--light-gray);
    text-align: center;
}

.related-products h2 {
    margin-bottom: 3rem;
    color: var(--primary-black);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.products-grid .column {
    background: var(--primary-white);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.products-grid .column:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.products-grid .column img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.products-grid .column h3 {
    padding: 15px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.products-grid .column h3 a {
    color: var(--primary-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.products-grid .column h3 a:hover {
    color: var(--primary-red);
}

/* --- Tips Section --- */
.tips {
    background-color: var(--primary-white);
}
.tips-list {
    counter-reset: tips-counter;
    list-style: none;
    margin-top: 2rem;
}

.tips-list li {
    counter-increment: tips-counter;
    background: var(--light-gray);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 5px solid var(--primary-red);
    position: relative;
    padding-left: 70px;
    font-size: 16px;
    line-height: 30px;
}

.tips-list li::before {
    content: counter(tips-counter);
    position: absolute;
    left: 20px;
    top: 25px;
    width: 35px;
    height: 35px;
    background-color: var(--primary-red);
    color: var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* ==================== FAQ样式 (完全匹配您的HTML结构) ==================== */
.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--white);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

/* FAQ问题按钮样式 */
.faq-question {
    width: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--white) 100%);
    border: none;
    padding: 20px 25px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
    font-family: inherit;
}

.faq-question:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0277bd 100%);
    color: var(--white);
}

.faq-question:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(3, 148, 227, 0.3);
}

/* FAQ问题前的Q标识 */
.faq-question::before {
    content: 'Q';
    background: var(--primary-color);
    color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.faq-question:hover::before {
    background: var(--white);
    color: var(--primary-color);
}

/* FAQ问题的加号/减号图标 */
.faq-question::after {
    content: '+';
    font-size: 20px;
    font-weight: 300;
    transition: var(--transition);
    margin-left: auto;
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

/* FAQ答案容器样式 */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
    background: var(--white);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 20px 25px 20px 68px; 
}

/* FAQ答案段落样式 */
.faq-answer .anke-p {
    margin: 0;
    font-size: 16px;
    line-height: 30px;
    color: var(--text-light);
}

/* FAQ答案中的A标识 */
.faq-answer .anke-p::before {
    content: 'A:';
    color: var(--primary-color);
    font-weight: 600;
    margin-right: 8px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .faq-question {
        padding: 15px 20px;
        font-size: 15px;
    }
    
    .faq-question::before {
        width: 24px;
        height: 24px;
        font-size: 12px;
        margin-right: 12px;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px 20px 15px 56px;
    }
    
    .faq-answer .anke-p {
        font-size: 14px;
    }
}

/* 确保按钮在所有浏览器中样式一致 */
.faq-question {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    counter-increment: tips-counter;
    background: var(--light-gray);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 5px solid var(--primary-red);
    position: relative;
    padding-left: 70px;
    font-size: 20px;
    line-height: 1.8;
}

/* 动画效果 */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item.active .faq-answer {
    animation: fadeInDown 0.3s ease;
}


/* --- Related Tags Section --- */
.related-tags {
    background-color: var(--light-gray);
    text-align: center;
}

.related-tags h2 {
    margin-bottom: 3rem;
    color: var(--primary-black);
}

.tags-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.tags-grid .column {
    background: var(--primary-white);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-gray);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.tags-grid .column:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.tags-grid .column h3 {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.8;
}

.tags-grid .column h3 a {
    color: var(--primary-black);
    font-weight: 600;
}

.tags-grid .column p {
    font-size: 16px; /* Minimum font size */
    line-height: 30px;
    margin-bottom: 0;
}


/* --- NEW SECTION STYLES --- */

/* --- Advantage Section --- */
#advantage {
    margin-top: 3rem;
}

.anke-ul {
    list-style: none;
    padding-left: 0;
    max-width: 800px;
    margin: 2rem auto 0;
}

.anke-ul li {
    background-color: var(--light-gray);
    border-left: 5px solid var(--primary-red);
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 16px;
    line-height: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.anke-ul li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.anke-ul li strong {
    color: var(--primary-black);
    font-weight: 700;
}

.anke-p {
    margin-bottom: 1rem;
    font-size: 16px;
    line-height: 30px;
    color: var(--text-gray);
}

.anke-p strong {
    color: var(--primary-black);
}

/* --- Purchase Info Wrapper --- */
.purchase-info-wrapper {
    background-color: var(--light-gray);
    padding-top: 80px;
    margin-top: 80px;
}

/* --- Payment & Shipping Section --- */
.payment-shipping .anke-ul {
    max-width: 100%;
}

/* --- Info Summary Table --- */
.anke-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}

.anke-table td {
    padding: 18px 25px;
    border-bottom: 1px solid var(--border-gray);
    vertical-align: top;
    line-height: 1.7;
}

.anke-table tr:last-child td {
    border-bottom: none;
}

.anke-table tr:nth-child(odd) {
    background-color: var(--primary-white);
}

.anke-table tr:nth-child(even) {
    background-color: #f2f2f2; /* A slightly different gray for distinction */
}

.anke-table tr:hover {
    background-color: var(--light-red-bg);
}

.anke-table td:first-child {
    font-weight: 700;
    color: var(--primary-black);
    width: 35%;
}

/* --- SIDE NAVIGATION STYLES --- */
main {
    flex-grow: 1;
}

.side-nav {
    position: sticky;
    top: 0;
    width: 220px;
    height: 100vh;
    background-color: var(--primary-black);
    padding: 100px 0 20px 0;
    flex-shrink: 0;
    overflow-y: auto;
    transition: transform 0.3s ease;
}

.side-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-nav li a {
    display: block;
    padding: 15px 25px;
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-left: 4px solid transparent;
}

.side-nav li a:hover,
.side-nav li a.active {
    color: var(--primary-white);
    background-color: #333;
    border-left-color: var(--primary-red);
}


/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .products-grid, .tags-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 40px; }
    h2 { font-size: 32px; }

    .description-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .products-grid, .tags-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .products-grid .column img {
        height: 200px;
    }

    .specs-table {
        font-size: 14px; /* Minimum font size */
    }
    
    .specs-table th, .specs-table td {
        padding: 10px;
    }

    .tips-list li {
        padding-left: 60px;
        font-size: 14px; /* Minimum font size */
    }

    .anke-table td {
        padding: 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .products-grid, .tags-grid {
        grid-template-columns: 1fr;
    }
    
    .anke-table td {
        display: block;
        width: 100%;
        padding: 12px 15px;
    }
    
    .anke-table td:first-child {
        font-weight: 700;
        background-color: #f0f0f0; /* Slightly darker for mobile */
    }
}
p.anke-p{
    font-size: 16px;
    line-height: 30px;
    padding-top: 10px;
}
#advantage{
     padding: 30px 15px;
    font-size: 16px;
    line-height: 30px;
}
.container h2{
    font-size: 20px;
    line-height: 1.8;
    padding: 20px 0;
    color: #b10d03;
    font-weight: 800;
}

.container h3{
        font-size: 18px;
    line-height: 1.8;
    padding-bottom: 5px;
}
#faq{
  padding: 80px 0;
}

.inner-banner p{
    text-align: center;
}

.inner-banner h1{
    font-weight: 700;
    font-size: 30px;
    line-height: 2;
        padding: 20px 0;
    color: #b10d03;
    text-align: center;
}
.inner-page #index-body .i-why{
    padding-top: 70px;
}

.newdet-page.Auxil-related{
    padding: 40px 0;
}

/* =================================================================================
// AnkeFire Product Image Gallery - Isolated Styles
// ================================================================================= */

#product-image-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#product-image-gallery .gallery-main-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

#product-image-gallery .gallery-main-image img {
    width: 100%;
    display: block;
    transition: opacity 0.3s ease-in-out;
}

#product-image-gallery .gallery-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

#product-image-gallery .gallery-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

#product-image-gallery .gallery-slide {
    min-width: 100%;
    height: 120px;
    object-fit: cover;
    cursor: pointer;
    border: 3px solid transparent;
    border-radius: 5px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

#product-image-gallery .gallery-slide:hover {
    transform: scale(1.05);
}

#product-image-gallery .gallery-slide.active {
    border-color: var(--primary-red, #b10d03); /* Fallback color */
}

#product-image-gallery .gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    color: #333;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#product-image-gallery .gallery-nav-btn:hover {
    background-color: var(--primary-red, #b10d03); /* Fallback color */
    color: #fff;
}

#product-image-gallery .gallery-prev-btn {
    left: 10px;
}

#product-image-gallery .gallery-next-btn {
    right: 10px;
}
/* =================================================================================
// AnkeFire Product Image Gallery - 3-Item Carousel Version
// ================================================================================= */

#product-image-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#product-image-gallery .gallery-main-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

#product-image-gallery .gallery-main-image img {
    width: 100%;
    display: block;
    transition: opacity 0.3s ease-in-out;
}

/* --- Thumbnail Carousel Styles --- */
#product-image-gallery .thumbnail-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden; /* Hides thumbnails outside the view */
}

#product-image-gallery .carousel-track {
    display: flex;
    gap: 15px; /* Space between thumbnails */
    transition: transform 0.4s ease-in-out;
}

#product-image-gallery .thumbnail {
    flex: 0 0 auto; /* Prevents thumbnails from shrinking */
    width: calc((100% - 30px) / 3); /* Show exactly 3 thumbnails */
    cursor: pointer;
    border: 3px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    opacity: 0.7;
    transition: opacity 0.3s ease, border-color 0.3s ease;
}

#product-image-gallery .thumbnail:hover {
    opacity: 1;
}

#product-image-gallery .thumbnail.active {
    opacity: 1;
    border-color: var(--primary-red, #b10d03); /* Active thumbnail has a red border */
}

#product-image-gallery .thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Carousel Navigation Buttons --- */
#product-image-gallery .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    color: #555;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#product-image-gallery .carousel-btn:hover {
    background-color: var(--primary-red, #b10d03);
    color: #fff;
}

#product-image-gallery .carousel-prev-btn {
    left: 10px;
}

#product-image-gallery .carousel-next-btn {
    right: 10px;
}

/* --- Responsive Adjustment for Mobile --- */
@media (max-width: 768px) {
    #product-image-gallery .thumbnail {
        width: calc((100% - 15px) / 2); /* Show 2 thumbnails on smaller screens */
    }
}

@media (max-width: 480px) {
    #product-image-gallery .thumbnail {
        width: 100%; /* Show 1 thumbnail on very small screens */
    }
}

/* =================================================================================
// 顶部固定导航栏样式
// ================================================================================= */

.top-navigation {
    position: inherit;
    top: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50; /* 深蓝灰色背景 */
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px; /* 导航栏高度 */
}

.nav-menu li {
    margin: 0;
}

.nav-link {
    display: block;
    color: #ffffff; /* 白色文字 */
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 20px 25px;
    margin: 0 5px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: #3498db; /* 悬停时蓝色 */
    background-color: rgba(255,255,255,0.1);
}

.nav-link.active {
    color: #3498db; /* 激活状态蓝色 */
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: #3498db; /* 激活状态的下划线 */
    border-radius: 2px;
}

/* 为固定导航栏添加主内容区域的顶部边距 */
.main-content-with-nav {
    padding-top: 80px; /* 导航栏高度 + 额外间距 */
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-menu {
        flex-wrap: wrap;
        height: auto;
        padding: 10px 0;
    }
    
    .nav-link {
        font-size: 13px;
        padding: 10px 15px;
        margin: 2px;
    }
    
    .nav-link.active::after {
        width: 30px;
        height: 2px;
    }
    
    .main-content-with-nav {
        padding-top: 100px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }
    
    .nav-menu::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    .nav-link {
        font-size: 12px;
        padding: 8px 12px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .main-content-with-nav {
        padding-top: 80px;
    }
}

/* 滚动时的导航栏效果 */
.top-navigation.scrolled {
    background-color: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}


.inner-page.prodet-page .contact-page .contact-3{
    padding: unset;
}