@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Space Grotesk", sans-serif; 
    overflow-x: hidden;
    overflow-y: auto;
}

/* Full Screen Landing Hero - Mobile Only */
.landing-hero {
    display: none; /* Hidden by default on desktop */
}

@media (max-width: 768px) {
    html {
        scroll-snap-type: y mandatory;
    }
    
    .landing-hero {
        display: block;
        height: 100vh;
        width: 100%;
        position: relative;
        scroll-snap-align: start;
        overflow: hidden;
    }
    
    .hero-image-container {
        width: 100%;
        height: 100%;
        position: relative;
    }
    
    .hero-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .scroll-indicator {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        color: white;
        animation: bounce 2s infinite;
        z-index: 10;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }
    
    .scroll-indicator span {
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 2px;
        display: block;
        margin-bottom: 10px;
        font-weight: 500;
    }
    
    .arrow-down {
        width: 20px;
        height: 20px;
        border-right: 2px solid white;
        border-bottom: 2px solid white;
        transform: rotate(45deg);
        margin: 0 auto;
    }
    
    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateX(-50%) translateY(0);
        }
        40% {
            transform: translateX(-50%) translateY(-10px);
        }
        60% {
            transform: translateX(-50%) translateY(-5px);
        }
    }
    
    .container {
        scroll-snap-align: start;
    }
}

.container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

/* Left section with floral background */
.left-section {
    background-image: url('images/3.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    position: relative;
}

/* Right section */
.right-section {
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    position: relative;
}

/* Center content with logo */
.center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;

}

.logo-text {
    font-size: 140px;
    font-weight: 700;
    color: #0066FF;
    line-height: 0.85;
    letter-spacing: -4px;
    margin-bottom: 60px;
}

.flower-icon {
    color: #FF40C9;
    font-size: 100px;
    vertical-align: middle;
}

.flower-icon.landing-page-subheading {
    color: #FF40C9;
    font-size: 20px;
    vertical-align: middle;
    position: relative;
    top: -1px;
    display: inline-block;
}

.flower-icon-nav {
    color: #FF40C9;
    font-size: 30px;
    vertical-align: middle;
}

.tagline {
    /* font-family: "Sainte Colombe";
    font-size: 32px;
    font-style: italic;
    color: #333;
    font-weight: 300;
    line-height: 1.2; */
    font-family: 'Space Grotesk';
    font-size: 30px;
    font-weight: 500;
    color: #0066FF;
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 40px;
    white-space: nowrap;
}

.tagline-subtitle {
    font-family: "Sainte Colombe";
    font-size: 18px;
    color: #333;
    font-weight: 300;
    line-height: 1.2;
    font-style: italic;

}

.tagline br {
    display: none;
}

/* Navigation items */
.nav-item {
    display: flex;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.nav-item:hover {
    opacity: 0.7;
}

/* Position navigation items */
.top-left {
    align-self: flex-start;
}

.top-right {
    align-self: flex-end;
}

.bottom-left {
    align-self: flex-start;
}

.bottom-right {
    align-self: flex-end;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: right;
}

/* Navigation text */
.nav-text {
    font-size: 18px;
    font-weight: 500;
    color: #0066FF;
    text-decoration: none;
}

.bottom-nav-text {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    text-decoration: none;

    line-height: 1.6;
}

.bottom-nav-text a {
    color: #0066FF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bottom-nav-text a:hover {
    text-decoration: underline;
    text-decoration-style: wavy;
    text-decoration-color: #FF40C9;
    text-underline-offset: 2px;
}

.highlight {
    text-decoration: underline;
    text-decoration-style: wavy;
    text-decoration-color: #FF40C9;
    text-underline-offset: 3px;
}
.email {
    font-size: 16px;
}

/* Navigation group */
.nav-group {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #0066FF;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    font-family: "Space Grotesk", sans-serif;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    text-decoration: underline;
    text-decoration-style: wavy;
    text-decoration-color: #FF40C9;
    text-underline-offset: 4px;
}

.nav-divider {
    color: #ccc;
    font-size: 16px;
}

/* Order Flowers button (legacy) */
.order-button {
    background-color: transparent;
    padding: 0;
    border: none;
    font-size: 18px;
    font-weight: 500;
    color: #0066FF;
    cursor: pointer;
    font-family: "Space Grotesk", sans-serif;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.order-button:hover {
    text-decoration: underline;
    text-decoration-style: wavy;
    text-decoration-color: #FF40C9;
}

/* Menu toggle (hidden on desktop) */
.menu-toggle {
    display: none;
    position: absolute;
    top: 40px;
    right: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 24px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #333;
    margin: 4px auto;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    display: none;
}

/* Sticky mobile nav - hidden on desktop */
.mobile-sticky-nav {
    display: none;
}

@media (max-width: 768px) {
    /* Hide desktop navigation items on mobile */
    .nav-item.top-right {
        display: none;
    }
    
    .nav-item.bottom-right {
        display: none;
    }
    
    .mobile-sticky-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        padding: 12px 10px;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
        justify-content: space-around;
        align-items: center;
        border-top: 1px solid #f0f0f0;
        gap: 5px;
    }
    
    .mobile-sticky-nav a {
        color: #0066FF;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        padding: 8px 12px;
        border-radius: 20px;
        transition: all 0.3s ease;
        text-align: center;
        flex: 1;
    }
    
    .mobile-sticky-nav a:hover,
    .mobile-sticky-nav a:active {
        background: #f0f7ff;
    }
}

.mobile-nav-overlay.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 36px;
    color: #333;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.mobile-nav-link {
    color: #0066FF;
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    font-family: "Space Grotesk", sans-serif;
    transition: all 0.3s ease;
    padding: 10px 0;
}

.mobile-nav-link:hover {
    text-decoration: underline;
    text-decoration-style: wavy;
    text-decoration-color: #FF40C9;
    text-underline-offset: 4px;
    transform: translateX(10px);
}

/* Portfolio Mobile Responsive */
@media (max-width: 768px) {
    .portfolio-section {
        padding: 30px 15px;
        scroll-snap-align: none;
        min-height: auto;
    }
    
    .portfolio-container {
        max-width: 100%;
    }
    
    .portfolio-grid-top {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .portfolio-grid-bottom {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .portfolio-image {
        aspect-ratio: 1;
        height: auto;
        max-height: 400px;
    }
    
    .about-section {
        padding: 30px 25px;
        border-radius: 15px;
        height: auto;
    }
    
    .section-header {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 36px;
        padding: 10px 20px;
        box-shadow: 4px 4px 0 var(--electric-blue);
    }
    
    .about-content {
        font-size: 16px;
        line-height: 1.6;
        text-align: left;
    }
    
    .about-content p {
        margin-bottom: 12px;
    }
    
    .about-content strong {
        display: block;
        margin-bottom: 5px;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        overflow-y: auto;
        overflow-x: hidden;
        height: auto;
    }
    
    .container {
        display: block;
        height: auto;
        position: relative;
    }
    
    .left-section {
        display: none;  /* Hide on mobile since we have landing-hero */
    }
    
    .right-section {
        width: 100%;
        height: auto;
        min-height: 100vh;
        margin: 0;
        padding: 80px 20px 80px; /* Extra bottom padding for sticky nav */
        background: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    
    .right-section::before {
        display: none;
    }
    
    .center-content {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 20px;
        max-width: 100%;
        margin: 0 auto;
        background: transparent;
        box-shadow: none;
        transform: none;
        top: auto;
        left: auto;
    }
    
    .logo-text {
        font-size: 65px;
        margin-bottom: 25px;
        line-height: 0.85;
        color: #0066FF;
    }
    
    .flower-icon {
        font-size: 50px;
    }
    
    .tagline {
        font-size: 24px;
        margin-bottom: 30px;
        line-height: 1.2;
        letter-spacing: -1px;
        color: #0066FF;
    }
    
    .tagline .landing-page-subheading {
        font-size: 22px;
        top: -1px;
    }
    
    .tagline br {
        display: block;
    }
    
    /* Hide desktop navigation */
    .nav-item.top-right {
        display: none;
    }
    
    .nav-item.bottom-right {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 0 20px;
        margin-top: 20px;
        background: transparent;
    }
    
    .bottom-nav-text {
        font-size: 13px;
        text-align: center;
        line-height: 1.3;
        color: #333;
        font-weight: 400;
    }
    
    .bottom-nav-text:first-child {
        margin-bottom: 8px;
    }
    
    .bottom-nav-text .highlight {
        text-decoration: underline;
        text-decoration-style: wavy;
        text-decoration-color: #FF40C9;
        text-underline-offset: 2px;
    }
    
    .bottom-nav-text a {
        color: #0066FF;
        font-weight: 600;
        text-decoration: none;
    }
  
    /* Sticky mobile navigation bar */
    .mobile-sticky-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        padding: 12px 20px;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
        justify-content: space-around;
        align-items: center;
        border-top: 1px solid #f0f0f0;
    }
    
    .mobile-sticky-nav a {
        color: #0066FF;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        padding: 8px 16px;
        border-radius: 20px;
        transition: all 0.3s ease;
    }
    
    .mobile-sticky-nav a:hover,
    .mobile-sticky-nav a:active {
        background: #f0f7ff;
    }
    
    /* Mobile navigation overlay */
    .menu-toggle {
        display: none;
    }
    
    .nav-group {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-divider {
        display: none;
    }
    
    .nav-link {
        font-size: 16px;
    }
}

/* Portfolio Section */
.portfolio-section {
    min-height: 100vh;
    background: #fafafa;
    scroll-snap-align: start;
    padding: 60px 40px;
}

.portfolio-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.portfolio-grid-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.portfolio-grid-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: #f0f0f0;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About Section Styling */
.about-section {
    padding: 60px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 64px;
    font-weight: 700;
    color: #1a1a1a;
    display: inline-block;
    padding: 16px 32px;
    background: white;
    border: 2px solid #1a1a1a;
    box-shadow: 6px 6px 0 #0066FF;
    transition: all 0.2s ease;
}

.section-header h2:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 #0066FF;
}

.about-content {
    font-size: 22px;
    line-height: 1.9;
    color: #666;
}

.about-content p {
    margin-bottom: 20px;
}

.about-content strong {
    color: #0066FF;
    font-weight: 600;
}

.about-content a {
    color: #0066FF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-content a:hover {
    text-decoration: underline;
    text-decoration-style: wavy;
    text-decoration-color: #FF40C9;
    text-underline-offset: 3px;
}

.about-content .highlight {
    text-decoration: underline;
    text-decoration-style: wavy;
    text-decoration-color: #FF40C9;
    text-underline-offset: 3px;
}



/* Mobile devices */
@media (max-width: 768px) {
    /* Landing page hero section */
    .hero-section {
        min-height: 60vh;
        padding: 100px 20px 40px;
    }
    
    .center-content {
        padding: 20px;
    }
    
    .logo-text {
        font-size: 80px;  /* Much larger on mobile */
        margin-bottom: 20px;
    }
    
    .flower-icon {
        font-size: 65px;
    }
    
    .tagline {
        font-size: 28px;  /* Larger tagline */
        margin-bottom: 30px;
    }
    
    .tagline .landing-page-subheading {
        font-size: 24px;
    }
    
    /* Portfolio section */
    .portfolio-section {
        padding: 40px 20px;
    }
    
    .portfolio-grid-top,
    .portfolio-grid-bottom {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .portfolio-image {
        height: 50vh;
        min-height: 350px;
        margin: 0 auto;
        max-width: 90%;
    }
    
    /* About section - much smaller on mobile */
    .about-section {
        padding: 30px 25px;
    }
    
    .section-header {
        margin-bottom: 25px;
    }
    
    .section-header h2 {
        font-size: 36px;  /* Smaller heading */
        padding: 10px 20px;
        box-shadow: 4px 4px 0 #0066FF;
    }
    
    .about-content {
        font-size: 16px;  /* Smaller text */
        line-height: 1.6;
    }
    
    .about-content p {
        margin-bottom: 15px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .center-content {
        padding: 15px;
    }
    
    .logo-text {
        font-size: 65px;  /* Still large but fits small screens */
        margin-bottom: 15px;
    }
    
    .flower-icon {
        font-size: 50px;
    }
    
    .tagline {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .tagline .landing-page-subheading {
        font-size: 20px;
    }
    
    /* About section - even smaller on very small screens */
    .about-section {
        padding: 25px 20px;
    }
    
    .section-header h2 {
        font-size: 32px;
        padding: 8px 16px;
    }
    
    .about-content {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .portfolio-image {
        height: 250px;
    }
    
    .nav-item.bottom-right {
        padding: 0 15px;
        gap: 6px;
        margin-top: 15px;
    }
    
    .bottom-nav-text {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .bottom-nav-text:first-child {
        margin-bottom: 6px;
    }
    
    .menu-toggle {
        width: 40px;
        height: 40px;
        padding: 8px;
    }
}

/* Flower Care Page - Brand Colors & Mobile First */
.flower-care-page {
    background: #faf8f5;
    min-height: 100vh;
    font-family: "Space Grotesk", sans-serif;
}

/* Top Navigation */
.care-nav {
    background: white;
    padding: 15px 20px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.care-nav-logo a {
    font-size: 1.3rem;
    font-weight: 400;
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.care-nav-logo .flower-icon {
    color: #d4a373;
    font-size: 1.2rem;
}

.care-nav-links {
    display: flex;
    gap: 20px;
}

.care-nav-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.care-nav-links a:hover {
    color: #d4a373;
}

/* Main Content */
.care-main {
    padding: 30px 20px;
}

.care-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Hero Section */
.care-hero {
    text-align: center;
    margin-bottom: 40px;
}

.care-title {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #333;
}

.highlight-title {
    font-size: 3rem;
    font-weight: 400;
    color: #d4a373;
}

.care-title .flower-icon {
    color: #d4a373;
    font-size: 2.5rem;
}

.care-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
}

/* Care Tips Grid */
.care-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 50px;
}

.care-tip-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #f0e8e0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.care-tip-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 163, 115, 0.15);
}

.tip-number {
    width: 32px;
    height: 32px;
    background: #faf8f5;
    border: 1px solid #d4a373;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: #d4a373;
}

.care-tip-card h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.care-tip-card p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #666;
}

/* Accent Card */
.care-tip-card.accent {
    background: linear-gradient(135deg, #faf8f5, #f5ede5);
    border: 2px solid #d4a373;
}

.care-tip-card.accent .tip-number {
    background: #d4a373;
    color: white;
    border: none;
}

/* Arranging Section */
.arranging-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    border: 1px solid #f0e8e0;
    text-align: center;
}

.section-title {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: #333;
}

.arranging-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* Substack Section */
.substack-feature {
    text-align: center;
    margin-bottom: 50px;
}

.substack-feature h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #333;
}

.substack-embed-wrapper {
    background: #faf8f5;
    padding: 25px;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid #f0e8e0;
}

.substack-post-embed {
    background: white;
    padding: 20px;
    border-radius: 8px;
}

.substack-post-embed p {
    margin: 10px 0;
    font-size: 0.95rem;
    color: #666;
}

.substack-post-embed a {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 24px;
    background: #d4a373;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.3s;
}

.substack-post-embed a:hover {
    background: #c89862;
}

/* Footer */
.care-footer {
    background: #2a2a2a;
    color: white;
    padding: 40px 20px 20px;
    margin-top: 60px;
}

.footer-main {
    max-width: 900px;
    margin: 0 auto 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #444;
}

.footer-brand h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 5px;
}

.footer-brand .flower-icon {
    color: #d4a373;
}

.footer-brand p {
    color: #999;
    font-size: 0.85rem;
}

.footer-connect {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.footer-connect a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-connect a:hover {
    color: #d4a373;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.instagram-link svg {
    width: 18px;
    height: 18px;
}

.footer-nav {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-nav a {
    color: #999;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #d4a373;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .care-main {
        padding: 20px 15px;
    }

    .care-hero {
        margin-bottom: 30px;
    }

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

    .highlight-title {
        font-size: 2.3rem;
    }

    .care-title .flower-icon {
        font-size: 2rem;
    }

    .care-subtitle {
        font-size: 1rem;
    }

    .care-tips-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .care-tip-card {
        padding: 15px;
    }

    .tip-number {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .care-tip-card h3 {
        font-size: 0.95rem;
    }

    .care-tip-card p {
        font-size: 0.8rem;
    }

    .arranging-section {
        padding: 20px;
    }

    .section-title {
        font-size: 1.1rem;
    }

    .arranging-section p {
        font-size: 0.85rem;
    }

    .substack-feature h3 {
        font-size: 1.1rem;
    }

    .substack-embed-wrapper {
        padding: 20px 15px;
    }

    .footer-main {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-connect {
        align-items: center;
    }

    .footer-nav {
        gap: 20px;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .care-tips-grid {
        grid-template-columns: 1fr 1fr;
    }
}