/* Reset & Basic Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    color: #000;
    line-height: 1.6;
}

/* Animated Background Class */
.animated-bg {
    background: linear-gradient(-45deg, #fdfbf7, #f3efe6, #eaddc5, #fdfbf7);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    min-height: 100vh;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Floating Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(139, 69, 19, 0.05);
    border-radius: 50%;
    animation: float 20s infinite linear;
}

.particle:nth-child(1) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-duration: 25s;
}

.particle:nth-child(2) {
    left: 30%;
    width: 30px;
    height: 30px;
    animation-duration: 30s;
    animation-delay: -5s;
}

.particle:nth-child(3) {
    left: 70%;
    width: 15px;
    height: 15px;
    animation-duration: 22s;
    animation-delay: -10s;
}

.particle:nth-child(4) {
    left: 90%;
    width: 25px;
    height: 25px;
    animation-duration: 28s;
    animation-delay: -2s;
}

@keyframes float {
    0% {
        transform: translateY(110vh) rotate(0deg);
    }

    100% {
        transform: translateY(-10vh) rotate(360deg);
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px 0;
    border-bottom: 1px solid #E0D8C8;
}

.logo-area {
    text-align: left;
    display: flex;
    justify-content: flex-start;
    /* Ensure left alignment */
    align-items: center;
    width: 100%;
}

.logo-full-img,
.logo-img {
    /* Supporting both class names just in case */
    height: 80px;
    /* Reduced from 6rem to 80px for better fit */
    width: auto;
    display: block;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.logo-img:hover {
    opacity: 1;
}

/* Hide old elements */
.logo,
.tagline {
    display: none;
}

.logo {
    display: none;
}

.tagline {
    display: none;
}

/* Navigation */
.main-nav {
    background-color: #5D4037;
    /* Walnut Color */
    /* border-bottom removed */
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.main-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
}

.main-nav li {
    padding: 15px 40px;
    white-space: nowrap;
}

.main-nav a {
    font-size: 1.1rem;
    font-weight: 500;
    color: #EFEBE0;
    transition: color 0.3s, text-shadow 0.3s;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.main-nav a:hover {
    color: #FFD700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.main-nav a.active {
    color: #fff;
    border-bottom: 2px solid #fff;
    padding-bottom: 3px;
}

/* Hero Video Section */
.hero-video-section {
    width: 100%;
    /* height: 60vh; Removed fixed height */
    min-height: auto;
    background-color: transparent;
    /* Transparent to show page background */
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    /* Add more spacing */
    display: flex;
    flex-direction: column;
    /* Stack Slogan then Video */
    justify-content: center;
    align-items: center;
}

.hero-slogan {
    font-family: 'Nanum Brush Script', cursive;
    font-size: 5rem;
    color: #333;
    /* Dark color since it's on the page background now */
    margin-bottom: 30px;
    /* Space between text and video */
    text-align: center;
    line-height: 1.2;
    z-index: 10;
    /* text-shadow: none; Transparent background usually means dark text is fine, or simple shadow */
}

.video-placeholder {
    width: 90%;
    /* Responsive width */
    max-width: 1000px;
    /* Wider limit */
    aspect-ratio: 2 / 1;
    /* Wide 4:2 Ratio */
    height: auto;
    /* Allow height to adjust based on ratio */
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    /* Soften edges since it's floating on page */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 10rem;
    /* Increased spacing to 2x text height */
}

.video-placeholder img,
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* opacity: 0.8; Removed opacity for clearer video, or keep consistent? Video usually needs to be clear unless it's a background for text. Since text is hidden, let's make it clear. */
}

/* Review Collage Section */
.review-collage-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    /* Stack vertically */
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    /* Space from the slogan above */
    margin-bottom: 80px;
    /* Space before footer */
}

.review-image-container {
    width: 90%;
    max-width: 1000px;
    /* Match video placeholder */
    overflow: hidden;
    border-radius: 12px;
    /* Consistent rounded corners */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    /* Spacing between stacked images */
}

.review-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensure no whitespace */
    display: block;
    /* Remove bottom text gap */
    transition: transform 0.3s;
}

.review-image-container:hover img {
    transform: scale(1.05);
    /* Subtle zoom on hover */
}

/* Slogan Section Removed/Hidden */
.slogan-section {
    display: none;
}

/* Menu Section */
.menu-section {
    padding: 80px 0;
    background-color: transparent;
}

.menu-intro {
    text-align: center;
    margin-bottom: 60px;
    font-size: 1.1rem;
    color: #444;
}

.highlight-text {
    margin-top: 15px;
    color: #8B4513;
    font-weight: 700;
    font-size: 1.2rem;
}

.menu-grid,
.menu-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Horizontal Menu Card Styles (No Flip) */
/* Horizontal Menu Card Styles */
.menu-card {
    position: relative;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #E0D8C8;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    margin-bottom: 25px;
    display: flex;
    /* Horizontal Layout */
    flex-direction: row;
    align-items: stretch;
    transition: transform 0.3s, box-shadow 0.3s;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Left Side: Image & Effects */
.menu-card-image {
    width: 35%;
    /* Adjust width as needed */
    position: relative;
    overflow: hidden;
    /* Image background will be set inline in HTML or via class if preferred, but usually inline for dynamic images */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 220px;
}

/* Right Side: Text Content */
.menu-card-content {
    width: 65%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    position: relative;
    /* For badge positioning */
}

/* Responsive Stack */
@media (max-width: 600px) {
    .menu-card {
        flex-direction: column;
    }

    .menu-card-image {
        width: 100%;
        height: 250px;
        min-height: 250px;
    }

    .menu-card-content {
        width: 100%;
        padding: 25px;
    }
}

.menu-card.best {
    border: 2px solid #8B4513;
    background: rgba(255, 248, 231, 1);
}

.best-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #8B4513;
    color: #fff;
    padding: 4px 12px;
    font-size: 0.8rem;
    border-radius: 20px;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 700;
    z-index: 10;
}

/* CSS Cleanup - Removing duplicate blocks */

.menu-card h3 {
    font-family: 'Noto Serif KR', serif;
    font-size: 1.6rem;
    color: #222;
    margin-bottom: 8px;
}

.price {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 15px;
    display: block;
}

.description {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    word-break: keep-all;
}

/* Steam Effect */
.steam-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    opacity: 1;
}

.steam {
    position: absolute;
    bottom: 40%;
    /* Set to 40% as requested */
    left: 50%;
    width: 60px;
    /* 3x size */
    height: 60px;
    /* 3x size */
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    filter: blur(15px);
    /* Stronger blur for larger particles */
    animation: steam 3s infinite linear;
    /* Slightly faster */
    pointer-events: none;
}

.steam:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
    width: 70px;
    height: 70px;
}

.steam:nth-child(2) {
    left: 40%;
    animation-delay: 1s;
    width: 50px;
    height: 50px;
}

.steam:nth-child(3) {
    left: 60%;
    animation-delay: 2s;
    width: 60px;
    height: 60px;
}

.steam:nth-child(4) {
    left: 80%;
    animation-delay: 1.5s;
    width: 65px;
    height: 65px;
}

.steam:nth-child(5) {
    left: 30%;
    animation-delay: 0.5s;
    width: 55px;
    height: 55px;
}

.steam:nth-child(6) {
    left: 50%;
    animation-delay: 2.5s;
    width: 75px;
    height: 75px;
}

.steam:nth-child(7) {
    left: 70%;
    animation-delay: 1.2s;
    width: 45px;
    height: 45px;
}

.steam:nth-child(8) {
    left: 35%;
    animation-delay: 1.8s;
    width: 60px;
    height: 60px;
}

@keyframes steam {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    15% {
        opacity: 0.3;
        /* Significantly reduced opacity */
    }

    50% {
        transform: translateY(-50px) scale(2);
        opacity: 0.2;
        /* Subtle fade */
    }

    100% {
        transform: translateY(-120px) scale(4);
        /* Travel further, grow larger */
        opacity: 0;
    }
}

/* Snow Effect for Cold Menus */
.snow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    /* opacity: 0; removed, always visible */
    opacity: 1;
    /* transition: opacity 0.5s; */
}

/* Removed .menu-card.active selectors as effects are permanent on the image */

.snow {
    position: absolute;
    top: 10%;
    /* Start slightly below top edge */
    left: 50%;
    color: #E0F7FA;
    /* Light Cyan/Blueish */
    text-shadow: 0 0 5px #B2EBF2, 0 0 10px #fff;
    /* Bluish glow */
    animation: snow 3s infinite linear;
    opacity: 0;
    font-size: 1.2rem;
    line-height: 1;
}

.snow::after {
    content: '❄';
}

.snow:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
    animation-duration: 4.5s;
    font-size: 1rem;
}

.snow:nth-child(2) {
    left: 40%;
    animation-delay: 1s;
    animation-duration: 5s;
    font-size: 0.8rem;
}

.snow:nth-child(3) {
    left: 60%;
    animation-delay: 0.5s;
    animation-duration: 4s;
    font-size: 1.4rem;
}

.snow:nth-child(4) {
    left: 80%;
    animation-delay: 1.5s;
    animation-duration: 4.8s;
    font-size: 1.1rem;
}

@keyframes snow {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.9;
    }

    100% {
        /* Fall to about middle of card (approx 50-60%) */
        transform: translateY(120px) translateX(20px) rotate(360deg);
        opacity: 0;
    }
}

/* Footer */
.main-footer {
    background-color: #333;
    color: #ccc;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Start Up Page Styles */
.start-section {
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-family: 'Noto Serif KR', serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.start-instruction {
    margin-bottom: 50px;
    font-size: 1.1rem;
    color: #555;
}

/* Process Image Visual Effects */
.process-image-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto 60px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 40px;
    /* opacity: 0; removed for debugging visibility */
    /* animation: fadeUp 1s ease-out forwards; removed for debugging */
}

.process-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.process-image-container:hover .process-image {
    transform: scale(1.02);
}

.shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
    pointer-events: none;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.contact-info {
    background: rgba(255, 255, 255, 0.8);
    padding: 40px;
    border-radius: 15px;
    display: inline-block;
    border: 1px solid #E0D8C8;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-info .phone {
    font-size: 2rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 10px;
}

.contact-info .email {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.inquiry-btn {
    background: #8B4513;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.inquiry-btn:hover {
    background: #6D360E;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        font-size: 2rem;
    }

    .slogan {
        font-size: 1.8rem;
    }

    .main-nav ul {
        padding-left: 20px;
    }

}
}

/* --- Detailed Franchise Guide Styles --- */

/* Franchise Intro Header */
.franchise-intro {
    text-align: center;
    margin-bottom: 80px;
    padding: 60px 0;
}

.franchise-intro h1 {
    font-family: 'Noto Sans KR', sans-serif;
    /* Explicitly use site font */
    font-size: 3rem;
    /* Adjusted for mobile scale */
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.franchise-intro p {
    font-size: 1.5rem;
    font-weight: 300;
    color: #666;
    letter-spacing: 1px;
}

/* Steps Section */
.steps {
    margin-bottom: 100px;
}

.step {
    margin-bottom: 40px;
    padding: 0;
    /* Reset padding for flex layout */
    background: white;
    border-radius: 12px;
    /* Clean look without heavy colored borders */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s;
    display: flex;
    /* Flexbox */
    flex-direction: row;
    /* Text Left, Image Right */
    justify-content: space-between;
    overflow: hidden;
    align-items: stretch;
}

.step:hover {
    transform: translateY(-5px);
}

.step-text {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    order: 1;
    /* Text gets order 1 (Left) */
}

.step-image {
    width: 40%;
    min-height: 300px;
    background-color: white;
    /* Clean white background */
    display: flex;
    align-items: center;
    justify-content: center;
    order: 2;
    /* Image gets order 2 (Right) */
    /* Add a subtle separation border if desired, but user asked for clean */
    /* border-left: 1px solid #f9f9f9; */
}

.step-image img {
    width: 80%;
    height: auto;
    object-fit: contain;
}

.step-number {
    font-size: 80px;
    font-weight: 900;
    color: #f0f0f0;
    line-height: 1;
    margin-bottom: -10px;
}

.step-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -1px;
    color: #333;
}

.step-subtitle {
    font-size: 1.2rem;
    color: #8B4513;
    margin-bottom: 20px;
    font-weight: 500;
}

.step-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    padding-left: 0;
}

.step-content li {
    margin-bottom: 8px;
    list-style: none;
    padding-left: 15px;
    position: relative;
}

.step-content li:before {
    content: "—";
    position: absolute;
    left: 0;
    color: #ccc;
}


/* Benefits Section */
.benefits {
    margin-bottom: 100px;
}

.benefits-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #f0f0f0;
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.benefit-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    word-break: keep-all;
}

/* Investment Section */
.investment {
    text-align: center;
    padding: 80px 20px;
    background: #2a2a2a;
    color: white;
    border-radius: 12px;
    margin-bottom: 100px;
}

.investment-title {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.investment-amount {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 40px;
    letter-spacing: -2px;
    color: #FFD700;
}

.investment-detail {
    font-size: 1.1rem;
    line-height: 2;
    color: #ccc;
    font-weight: 300;
}

.investment-note {
    font-size: 0.9rem;
    color: #888;
    margin-top: 30px;
}

/* Contact Section (Updated) */
.franchise-contact {
    text-align: center;
    margin-bottom: 100px;
}

.franchise-contact-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.franchise-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.franchise-contact-item {
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #E0D8C8;
}

.franchise-contact-label {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
    font-weight: 400;
    letter-spacing: 1px;
}

.franchise-contact-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

/* Closing Section */
.closing {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #8B4513 0%, #5D4037 100%);
    color: white;
    border-radius: 12px;
}

.closing-main {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -1px;
}

.closing-sub {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.closing-cta {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    color: #FFD700;
}

/* Naver Inquiry Button */
.naver-btn {
    background-color: #03C75A;
    /* Naver Green */
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 20px 50px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(3, 199, 90, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
}

.naver-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(3, 199, 90, 0.4);
    background-color: #02b351;
}

/* Floating Inquiry Button (Restored) */
.floating-inquiry-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 100px;
    height: 100px;
    background-color: #8B4513;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.4);
    z-index: 1000;
    transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
    border: 2px solid #E0D8C8;
    cursor: pointer;
    font-size: 1.1rem;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.floating-inquiry-btn:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: #6D360E;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.6);
    color: #FFD700;
}

/* --- Mobile Optimization (Consolidated) --- */
@media (max-width: 768px) {

    /* Global Section Spacing */
    .start-section,
    .franchise-intro,
    .closing,
    .benefits,
    .steps,
    .investment,
    .naver-inquiry-container {
        margin-bottom: 50px;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    /* Typography Sizing */
    .franchise-intro h1 {
        font-size: 2rem;
    }

    .franchise-intro p {
        font-size: 1rem;
    }

    .section-title,
    .benefits-title,
    .franchise-contact-title,
    .closing-main {
        font-size: 2rem !important;
        margin-bottom: 30px;
    }

    .closing-cta {
        font-size: 2.2rem;
    }

    .step-number {
        font-size: 50px;
        /* Smaller step number */
    }

    .investment-amount {
        font-size: 2.5rem;
    }

    /* Process Step Cards - Aggressive Resize */
    .step {
        flex-direction: column;
        margin-bottom: 25px;
        /* Tighter stack */
    }

    .step-text {
        order: 2;
        padding: 20px 15px;
        /* Reduced side padding */
    }

    .step-image {
        width: 100%;
        height: 150px;
        /* Further reduced from 180px */
        min-height: 150px;
        order: 1;
    }

    .step-image img {
        height: 80%;
        /* Ensure image doesn't touch edges too much */
    }

    .step-title {
        font-size: 1.5rem;
        /* Smaller title */
        margin-bottom: 5px;
    }

    .step-subtitle {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .step-content li {
        margin-bottom: 2px;
        font-size: 0.9rem;
        /* Smaller text */
    }

    /* Benefits Grid */
    .benefits-grid {
        grid-template-columns: 1fr;
        /* Single column */
        gap: 20px;
    }

    .benefit-item {
        padding: 20px;
        /* Reduced padding */
    }

    /* Floating Button */
    .floating-inquiry-btn {
        width: 70px;
        height: 70px;
        bottom: 20px;
        right: 20px;
        font-size: 0.8rem;
    }
}