:root {
    --primary-color: #e4a0b3;
    /* Sakura Pink */
    --primary-dark: #d08ca0;
    --secondary-color: #8e7d75;
    /* Muted Earth Tone */
    --accent-color: #bfa668;
    /* Gold/Brass */
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --font-main: 'Noto Sans JP', sans-serif;
    --font-serif: 'Zen Old Mincho', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-padding {
    padding: 80px 0;
}

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

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

.bg-light {
    background-color: var(--bg-light);
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 1rem;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 700;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-desc {
    color: var(--text-light);
    margin-bottom: 40px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    height: 70px;
    display: flex;
    align-items: center;
}

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

.logo a {
    display: flex;
    align-items: center;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-color);
}

.logo-icon {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.8rem;
}

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

.nav-list {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-list a {
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.btn-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    margin-left: 20px;
}

.btn-header:hover {
    background-color: var(--primary-dark);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-content {
    z-index: 1;
    padding: 20px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.badge {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--text-color);
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
}

.btn-hero {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero:hover {
    background-color: #a89055;
    transform: translateY(-2px);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Overview */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.overview-item {
    text-align: center;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: 0.3s;
}

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

.overview-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.overview-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Items & Pricing */
.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.items-box {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.items-box h4 {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.check-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.check-list li::before {
    content: '\f00c';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.check-list.highlight li::before {
    color: var(--accent-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: flex-end;
}

.pricing-card {
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    position: relative;
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(228, 160, 179, 0.3);
    z-index: 1;
}

.badge-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.pricing-card .size {
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--text-light);
}

.pricing-card .price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-color);
    font-family: var(--font-serif);
}

.pricing-card .yen {
    font-size: 1rem;
    margin-left: 2px;
}

/* Features */
.features-wrapper {
    display: grid;
    gap: 20px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
}

.feature-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(228, 160, 179, 0.3);
    line-height: 1;
    margin-right: 20px;
    font-family: var(--font-serif);
}

.feature-content h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

/* Visual Break */
.visual-break {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.visual-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-text {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    max-width: 500px;
    border-left: 5px solid var(--primary-color);
}

.visual-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* Flow */
.flow-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
}

.step-num {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.step-arrow {
    align-self: center;
    color: #ddd;
    font-size: 1.5rem;
}

/* Area */
.area-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.area-list span {
    background: var(--bg-light);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
}

.area-list i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Contact */
.contact-section {
    background-color: var(--secondary-color);
    color: var(--white);
}

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

.contact-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.method {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 40px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.method i {
    font-size: 2.5rem;
    margin-right: 20px;
}

.method .details {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.method .label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.method .number {
    font-size: 1.8rem;
    font-weight: bold;
    font-family: var(--font-serif);
}

.btn-contact {
    background: var(--white);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    margin-top: 5px;
    display: inline-block;
    text-align: center;
}

/* Footer */
.footer {
    background-color: #333;
    color: #ccc;
    padding: 60px 0 20px;
}

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

.footer-logo h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
    }

    .nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 40px;
        transition: 0.3s;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .btn-header {
        margin: 20px 0 0;
        display: block;
        text-align: center;
    }

    .mobile-menu-btn {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
    }

    .mobile-menu-btn span {
        position: absolute;
        width: 100%;
        height: 2px;
        background: var(--text-color);
        transition: 0.3s;
    }

    .mobile-menu-btn span:nth-child(1) {
        top: 0;
    }

    .mobile-menu-btn span:nth-child(2) {
        top: 9px;
    }

    .mobile-menu-btn span:nth-child(3) {
        top: 18px;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 9px;
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg);
        top: 9px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .step-arrow {
        display: none;
    }

    .pricing-card.popular {
        transform: none;
    }

    .visual-text {
        left: 5%;
        right: 5%;
        width: 90%;
        text-align: center;
        border-left: none;
        border-top: 5px solid var(--primary-color);
    }
}

/* Mail Plan Page Styles */
.mail-hero .hero-bg img {
    object-position: center 20%;
}

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

.point-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.point-num {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(228, 160, 179, 0.2);
    position: absolute;
    top: -10px;
    right: 10px;
    font-family: var(--font-serif);
}

.point-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
    position: relative;
}

.mail-flow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.mail-step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.usage-steps {
    max-width: 800px;
    margin: 0 auto;
}

.usage-item {
    display: flex;
    margin-bottom: 30px;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
}

.usage-head {
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 2px;
    min-width: 60px;
}

.usage-body {
    padding: 20px;
    flex: 1;
}

.usage-body h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

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

.address-box,
.payment-box {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    border-top: 4px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.address-box h4,
.payment-box h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.address-content .zip {
    font-size: 1.2rem;
    font-weight: bold;
}

.address-content .addr {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.address-content .note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
}

.payment-methods {
    display: grid;
    gap: 15px;
}

.bank-info {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
}

.bank-info h5 {
    color: var(--primary-dark);
    margin-bottom: 5px;
}

/* Form Styles */
.contact-form {
    max-width: 700px;
    margin: 40px auto 0;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.required {
    background: #ff6b6b;
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 5px;
    vertical-align: middle;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(228, 160, 179, 0.2);
}

.btn-submit {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 40px auto 0;
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

@media (max-width: 768px) {
    .usage-item {
        flex-direction: column;
    }

    .usage-head {
        writing-mode: horizontal-tb;
        width: 100%;
        padding: 10px;
    }
}

.info-section {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.info-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    display: inline-block;
}

.info-section p {
    margin-bottom: 15px;
}

.certificate-box {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    margin-top: 20px;
    border: 1px solid var(--primary-color);
}

.certificate-box .label {
    font-weight: bold;
    margin-right: 10px;
}

.certificate-box .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-color);
    font-family: var(--font-serif);
}

.certificate-box .yen {
    font-size: 1rem;
}

/* Customer Voice Page Styles */
.sub-hero .hero-bg img {
    object-position: center center;
}

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

.voice-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    border: 1px solid #eee;
}

.voice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.voice-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.voice-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
}

.voice-meta h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.voice-tag {
    display: inline-block;
    font-size: 0.75rem;
    padding: 2px 8px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 4px;
}

.voice-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.voice-body p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* About Page Styles */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/main.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0 60px;
    text-align: center;
    margin-top: 70px;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 1.2rem;
    font-family: var(--font-serif);
    letter-spacing: 2px;
    opacity: 0.9;
}

.about-feature-row {
    margin-bottom: 60px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-feature-row:last-child {
    margin-bottom: 0;
}

.about-feature-content h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.about-feature-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

.about-feature-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.profile-table-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.profile-table {
    width: 100%;
    border-collapse: collapse;
}

.profile-table th,
.profile-table td {
    padding: 20px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.profile-table th {
    width: 30%;
    color: var(--secondary-color);
    font-weight: bold;
    vertical-align: top;
}

.profile-table td {
    color: var(--text-color);
}

.profile-table tr:last-child th,
.profile-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {

    .profile-table th,
    .profile-table td {
        display: block;
        width: 100%;
        padding: 10px 0;
    }

    .profile-table th {
        border-bottom: none;
        padding-bottom: 5px;
    }

    .profile-table td {
        padding-top: 0;
        padding-bottom: 20px;
    }
}

/* Blog Page Styles */
.blog-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

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

.blog-hero .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.blog-hero .hero-content {
    z-index: 1;
    padding: 20px;
}

.blog-container {
    max-width: 900px;
}

.blog-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 1.8rem;
    color: var(--primary-dark);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-title i {
    color: var(--primary-color);
}

.blog-list {
    display: grid;
    gap: 15px;
}

.blog-list li {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 8px;
    transition: 0.3s;
}

.blog-list li:hover {
    transform: translateX(5px);
    border-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.blog-list a {
    display: block;
    padding: 20px;
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding-left: 40px;
}

.blog-list a::before {
    content: '\f054';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 0.8rem;
    transition: 0.3s;
}

.blog-list a:hover {
    color: var(--primary-dark);
}

.blog-list a:hover::before {
    left: 25px;
}

@media (max-width: 768px) {
    .blog-hero {
        height: 300px;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .blog-list a {
        padding: 15px;
        padding-left: 35px;
        font-size: 0.95rem;
    }
}

.blog-nav {
    margin-bottom: 60px;
    padding: 0 10px;
}

.blog-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.blog-nav a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--white);
    color: var(--primary-dark);
    border-radius: 50px;
    font-weight: bold;
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
    font-family: var(--font-serif);
    box-shadow: 0 2px 5px rgba(228, 160, 179, 0.1);
}

.blog-nav a i {
    color: var(--primary-color);
    transition: 0.3s;
}

.blog-nav a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(228, 160, 179, 0.3);
}

.blog-nav a:hover i {
    color: var(--white);
}

@media (max-width: 768px) {
    .blog-nav {
        margin-bottom: 40px;
    }

    .blog-nav ul {
        gap: 10px;
    }

    .blog-nav a {
        font-size: 0.9rem;
        padding: 10px 18px;
        gap: 8px;
    }
}

/* Memorial Scenes */
.scenes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.scene-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.scene-img {
    height: 200px;
    overflow: hidden;
}

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

.scene-item:hover .scene-img img {
    transform: scale(1.1);
}

.scene-content {
    padding: 20px;
}

.scene-content h4 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    font-family: var(--font-serif);
}

.scene-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
}