* {
    font-family: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
    font-weight: 500;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.br-mobile {
    display: none;
}
@media (max-width: 768px) {
    .br-mobile {
        display: block;
    }
}

/* スクリーンリーダー用の非表示クラス */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Header */
header {
    background-color: rgb(255, 255, 255, 0.9);
    color: black;
    padding: 0.75rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.header-message {
    margin: 0;
    color: white;
    font-size: 0.8rem;
    padding: 5px 10px;
    background-color: #5cc2e4;
    /* background-color: #555555; */
    border-radius: 30px;
}
@media (max-width: 768px) {
    .header-message {
    font-size: 0.6rem;
}
}



nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 2rem;
    font-family: "Noto Sans JP", sans-serif;
    text-decoration: none;
    color: #000000;
    font-weight: bold;
    font-size: 1.5em;
    line-height: 28px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-links a {
    color: black;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.nav-links a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../img/top_2.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
} */

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero-content img {
    display: none; /* 背景画像を使用するため非表示 */
}

.hero-content h1 {
    /* font-size: 1.5rem !important; */
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.8;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    letter-spacing: 0.15em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
}

.cta-button {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.6s both;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* baner section */
.baner {
    margin: 5px;
}
.baner_img {
    width: 100%;
    padding: 5px;
}
/* Features Section */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}
        
.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #2c3e50;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1rem;
    color: #7f8c8d;
    letter-spacing: 0.05em;
    font-weight: 300;
}

.features-section {
    margin: 30px auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease-out forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-image {
    /* width: 50%; */
    height: 200px;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-image img {
    width: 100%;
}

.feature-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    transition: transform 0.6s ease;
}

.feature-content {
    padding: 40px 30px;
    position: relative;
}

.feature-number {
    position: absolute;
    top: -35px;
    left: 20px;
    background: #85cde6;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 300;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.feature-description {
    color: #5a6c7d;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    color: #667eea;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.feature-link::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.feature-link:hover::after {
    transform: translateX(5px);
}

.highlight {
    color: #667eea;
    font-weight: 600;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .features-section {
        padding: 35px 25px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-content {
        padding: 30px 25px;
    }
    
    .feature-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .feature-content {
        padding: 25px 20px;
    }
}
.line-button-section {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Samples Section */
.samples {
    padding: 5rem 0;
    background: #f8f9fa;
}

.samples h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #333;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #333;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #666;
}

.about-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}


.about {
    padding: 80px 0;
    /* background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 4px;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.product-specs {
    background: rgba(255, 255, 255, 0.8);
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-specs h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.product-specs p {
    margin-bottom: 15px;
}

.specs-list {
    list-style: none;
    margin: 15px 0;
}

.specs-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #555;
}

.specs-list li::before {
    content: '📷';
    position: absolute;
    left: 0;
    top: 8px;
}

.corporate-note {
    background-color: rgb(230, 230, 230);
    color: black;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.corporate-note a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.3s ease;
}
.corporate-note p {
    margin: 0;
}

.corporate-note a:hover {
    opacity: 0.8;
}

.line-button-section {
    margin-top: 40px;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #00c851 0%, #00a142 100%);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 200, 81, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 200, 81, 0.4);
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    min-height: 400px;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* タブレット対応 */
@media (max-width: 1024px) {
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
    }
    
}

/* スマートフォン対応 */
@media (max-width: 768px) {
    .about {
        padding: 40px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .about-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .product-specs {
        padding: 20px;
        margin: 25px 0;
    }
    
    .product-specs h3 {
        font-size: 1.2rem;
    }
    
    .corporate-note {
        padding: 15px;
        font-size: 0.9rem;
    }
    
    .about-image {
        min-height: 250px;
        font-size: 1.2rem;
    }
    
}

/* 小さなスマートフォン対応 */
@media (max-width: 480px) {
    .about-text h2 {
        font-size: 1.6rem;
    }
    
    .product-specs {
        padding: 15px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .about-image {
        min-height: 200px;
        font-size: 1rem;
    }
    
}

/* Menu section */
.menu-container {
    max-width: 1200px;
    margin: 0 auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px 0;
}

.menu-item {
    background: white;
    padding: 30px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}
.menu-item:nth-child(1) {
    background-color: #fdebc4;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    background: linear-gradient(45deg, #FF6B35, #FF8E53);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
    z-index: 2;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 25px;
    aspect-ratio: 1;
}

.photo-item {
    border-radius: 12px;
    overflow: hidden;
    background: #e0e0e0;
    position: relative;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-item:nth-child(1) {
    grid-row: span 2;
}

.photo-item:nth-child(5) {
    grid-column: span 2;
}

.logo-item {
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    color: #333;
}

.menu-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin: 10px auto;
}

.menu-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: 12px;
    text-align: justify;
}

.price {
    font-size: 28px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}
.price span {
    font-size: 0.5rem;
    color: gray;
}

.select-button {
    background: white;
    border: 2px solid #5cc2e4;
    color: #5cc2e4;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.select-button:hover {
    background: #5cc2e4;
    color: white;
}

/* タブレット以下での2列レイアウト */
@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 20px 10px;
    }

    .menu-item {
        padding: 25px 15px;
    }

    .menu-title {
        font-size: 20px;
    }

    .price {
        font-size: 24px;
    }

    .photo-grid {
        margin-bottom: 20px;
    }
}

/* スマホ画面での調整 */
@media (max-width: 480px) {
    .menu-grid {
        gap: 5px;
        padding: 20px 5px;
    }

    .menu-item {
        padding: 20px 12px;
    }

    .menu-title {
        font-size: 18px;
    }

    .price {
        font-size: 22px;
    }

    .select-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}
/* contacts Section */
.contacts {
    padding: 5rem 0;
    background: #f8f9fa;
}

.contacts h2,
.contacts h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #333;
}
/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 3rem auto;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(72, 187, 120, 0.1);
    border: 2px solid rgb(197, 227, 237);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #606060;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgb(203, 203, 203);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #90C3D4;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #48BB78;
    box-shadow: 0 0 0 3px rgba(72, 187, 120, 0.1);
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #90C3D4, #6096BA);
    color: white;
    padding: 1.2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.3);
    background: linear-gradient(135deg, #38A169, #276749);
}



/* Legal Notice Section */
.legal-notice {
    padding: 5rem 0;
    background: #f8f9fa;
}

.legal-notice h2,
.legal-notice h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.legal-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.legal-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.legal-item:last-child {
    border-bottom: none;
}

.legal-item h3 {
    color: #667eea;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.legal-item p {
    color: #666;
    line-height: 1.8;
}

/* Footer */
footer {
    background: white;
    color: #333;
    text-align: center;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-family: "Noto Sans JP", sans-serif;
    color: black;
    font-weight: bold;
}

.footer-section a {
    color: #333;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #667eea;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 2rem;
    color: #333;
}
@media (max-width: 768px) {
    .footer-section a {
        font-size: 0.8rem;
    }
}
/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease-in-out;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
        z-index: 1000;
        padding: 0;
        margin: 0;
        display: flex;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .legal-content {
        padding: 2rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Hide scrollbar but keep functionality */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5a67d8;
}

/* --- フローティングバナー --- */
.floating-banner {
    position: fixed;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out, visibility 1.5s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.floating-banner.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-banner a {
    display: block;
}

.floating-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.close-banner-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 20px;
    line-height: 26px;
    text-align: center;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.close-banner-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* スマートフォン用のスタイル */
@media (max-width: 767px) {
    .floating-banner {
        bottom: 10px;
        left: 10px;
        width: calc(100% - 20px); /* 左右に10pxずつの余白 */
        border-radius: 8px;
        overflow: hidden; /* 角丸を適用するため */
    }
}

/* PC用のスタイル */
@media (min-width: 768px) {
    .floating-banner {
        bottom: 20px;
        right: 20px;
        width: 33.33vw;
        max-width: 400px; /* バナーが大きくなりすぎないように最大幅を指定 */
        border-radius: 8px;
        overflow: hidden; /* 角丸を適用するため */
    }
}
.social-icons {
    margin-top: 1rem;
}

.social-icons a {
    display: inline-block;
    margin: 0 10px;
    color: #333;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #667eea;
}
.social-icons img {
    width: 28px;
    height: 28px;
}

/* Reviews Section in benefits.php */
.reviews-section {
    margin-top: 60px;
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 15px;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.review-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-rating {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.review-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.review-author {
    font-size: 0.85rem;
    color: #888;
    text-align: right;
    font-weight: bold;
}

/* FAQ Section Custom Styles */
#faq {
    background-color: #f9f9f9;
    padding: 60px 0;
}

#faqAccordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 16px !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    background: white;
}

.accordion-button {
    font-size: 1.05rem;
    font-weight: 700;
    padding: 1.5rem;
    color: #2c3e50;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 16px !important;
}

.accordion-button:not(.collapsed) {
    color: #5cc2e4;
    background-color: #f0faff;
    box-shadow: none;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,0.125);
}

.accordion-button::before {
    content: "Q.";
    display: inline-block;
    margin-right: 12px;
    color: #5cc2e4;
    font-size: 1.3rem;
    font-weight: 800;
}

.accordion-body {
    padding: 1.5rem 2rem;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    background-color: #fff;
    border-top: 1px solid #f0f0f0;
}
