:root {
    --primary: #FF6B35;
    --primary-dark: #D45A2C;
    --secondary: #FF9E7D;
    --accent: #FFD166;
    --light: #1A1A2E;
    --dark: #121212;
    --green: #FF6B35;
    --text: #F5F5F5;
    --text-light: #D1D1D1;
    --white: #F5F5F5;
    --card-bg: #252525;
    --radius: 12px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 8px 30px rgba(255, 107, 53, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    overflow-x: hidden;
    touch-action: manipulation;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
    background-color: var(--dark);
}

body {
    position: relative;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    color: var(--text);
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    min-height: 100vh;
}

input, textarea {
    user-select: text;
}

body::-webkit-scrollbar {
    display: none;
}

/* Universe Background */
.universe-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: radial-gradient(ellipse at bottom, #1B2735 0%, #090A0F 100%);
    overflow: hidden;
}

.star {
    position: absolute;
    background: #F5F5F5;
    border-radius: 50%;
    animation: twinkle var(--duration) infinite ease-in-out;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Layout */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 clamp(15px, 4vw, 30px);
    width: 100%;
    overflow: hidden;
}

/* Header */
header {
    background-color: rgba(18, 18, 18, 0.95);
    box-shadow: var(--shadow);
    padding: clamp(15px, 3vw, 25px) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(15px);
    width: 100%;
    overflow: hidden;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(10px, 2vw, 20px);
    width: 100%;
}

.logo {
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.logo i {
    margin-right: clamp(8px, 1.5vw, 12px);
    font-size: clamp(18px, 3.5vw, 24px);
}

.search-bar {
    flex: 1;
    max-width: min(600px, 50vw);
    position: relative;
    min-width: 200px;
    margin: 0 clamp(10px, 2vw, 30px);
}

.search-bar input {
    width: 100%;
    padding: clamp(10px, 2vw, 15px) clamp(15px, 3vw, 25px);
    border: 2px solid #333;
    border-radius: var(--radius);
    font-size: clamp(14px, 2.5vw, 16px);
    outline: none;
    transition: var(--transition);
    background-color: rgba(37, 37, 37, 0.8);
    color: var(--text);
    backdrop-filter: blur(5px);
}

.search-bar input:focus {
    border-color: var(--primary);
    background-color: rgba(45, 45, 45, 0.9);
    transform: scale(1.02);
}

.search-bar button {
    position: absolute;
    right: clamp(8px, 1.5vw, 12px);
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    font-size: clamp(16px, 2.5vw, 18px);
    transition: var(--transition);
}

.search-bar button:hover {
    transform: translateY(-50%) scale(1.1);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(10px, 2vw, 15px) clamp(20px, 3vw, 30px);
    background-color: var(--primary);
    color: var(--text);
    border: none;
    border-radius: var(--radius);
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: 600;
    cursor: pointer;
    transition: var(--bounce);
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Hero Slider */
.hero-slider {
    width: 100%;
    height: clamp(350px, 60vh, 600px);
    position: relative;
    overflow: hidden;
    border-radius: 0 0 var(--radius) var(--radius);
    margin-bottom: clamp(30px, 5vw, 50px);
}

.slides-container {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    pointer-events: none;
    transition: var(--transition);
}

.slide:hover img {
    transform: scale(1.05);
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text);
    padding: clamp(20px, 4vw, 40px);
    z-index: 2;
}

.slide-content h1 {
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    margin-bottom: clamp(15px, 3vw, 25px);
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    animation: fadeInUp 0.8s ease;
    line-height: 1.2;
}

.slide-content p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    max-width: min(700px, 90vw);
    margin: 0 auto clamp(20px, 4vw, 35px);
    opacity: 0.9;
    text-shadow: 0 1px 5px rgba(0,0,0,0.8);
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
    line-height: 1.5;
}

.slide-content .btn {
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

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

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.8));
    z-index: 1;
}

/* Categories Section */
 .categories-section {
    padding: clamp(10px, 2vw, 20px) 0;
    margin-bottom: clamp(15px, 2vw, 25px);
    width: 100%;
    overflow: hidden;
}

.categories-container {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 15px 5px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(255, 255, 255, 0.1);
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    margin: 0 -15px;
    padding: 15px;
}

.categories-container::-webkit-scrollbar {
    height: 6px;
}

.categories-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.categories-container::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 10px;
}

.categories-container::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary-dark);
}

.category-btn {
    flex: 0 0 auto;
    padding: 10px 20px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(37, 37, 37, 0.8);
    color: var(--text-light);
    border: 1px solid #333;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    backdrop-filter: blur(50px);
}

.category-btn.active,
.category-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.category-btn:active {
    transform: translateY(0);
}

.category-btn i {
    margin-right: 6px;
    transition: transform 0.3s ease;
}

.category-btn:hover i {
    transform: scale(1.1);
}

/* Pinned recipes */
.pinned-section {
    padding:  0;
    margin-bottom: clamp(25px, 4vw, 40px);
    width: 100%;
    overflow: hidden;
}

.pinned-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: clamp(20px, 3vw, 35px);
    width: 100%;
}

/* Pinned card style within the unified grid */
.recipe-card.pinned {
    border: 1px solid var(--primary);
    box-shadow: 0 0 0 1px var(--primary), 0 4px 20px rgba(255, 107, 53, 0.15);
    position: relative;
}

.pinned-card::before {
    content: 'Featured';
    position: absolute;
    top: clamp(8px, 1.5vw, 12px);
    right: clamp(8px, 1.5vw, 12px);
    background-color: var(--primary);
    color: var(--text);
    padding: clamp(3px, 1vw, 6px) clamp(8px, 1.5vw, 12px);
    border-radius: 20px;
    font-size: clamp(10px, 2vw, 12px);
    font-weight: 600;
    z-index: 2;
}

.pinned-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

/* Recipes Section */
.recipes-section {
    padding: 20px 0 60px;
    width: 100%;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: clamp(30px, 5vw, 60px);
}

.section-title h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--text);
    margin-bottom: clamp(10px, 2vw, 20px);
}

.section-title p {
    color: var(--text-light);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(20px, 3vw, 35px);
    width: 100%;
}

/* Recipe Card */
.recipe-card {
    background-color: rgba(37, 37, 37, 0.8);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--bounce);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #333;
    backdrop-filter: blur(5px);
}

.recipe-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

/* Featured Badge */
.pinned-badge {
    position: absolute;
    top: 15px;
    right: -5px;
    background: linear-gradient(135deg, #ff6b35, #ff9e1f);
    color: white;
    padding: 6px 14px 6px 24px;
    border-radius: 20px 4px 4px 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateX(0) rotate(0);
    transform-origin: right center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.pinned-badge::before {
    content: '★';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.pinned-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.6s ease;
}

.pinned-badge:hover {
    transform: translateX(-5px) rotate(0);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.pinned-badge:hover::after {
    transform: translateX(100%) skewX(-15deg);
}

/* Add animation for the badge when the page loads */
@keyframes badgeEntrance {
    0% {
        transform: translateX(30px) rotate(10deg);
        opacity: 0;
    }
    100% {
        transform: translateX(0) rotate(0);
        opacity: 1;
    }
}

.pinned-card .pinned-badge {
    animation: badgeEntrance 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s both;
}

.recipe-image-container {
    height: clamp(150px, 25vh, 220px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    position: relative;
}

.recipe-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    pointer-events: none;
}

.recipe-card:hover .recipe-image {
    transform: scale(1.1);
}

.recipe-info {
    padding: clamp(15px, 3vw, 25px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.recipe-title {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    font-weight: 600;
    margin-bottom: clamp(8px, 1.5vw, 12px);
    color: var(--text);
    line-height: 1.3;
}

.recipe-description {
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    color: var(--text-light);
    margin-bottom: clamp(12px, 2vw, 20px);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
}

/* Tags */
.recipe-tags {
    display: flex;
    flex-wrap: wrap;
    /* gap: clamp(6px, 1vw, 6px); */
    margin-bottom: clamp(15px, 2.5vw, 25px);
}

.tag {
    display: inline-block;
    padding: clamp(4px, 1vw, 4px) clamp(8px, 1.5vw, 12px);
    border-radius: 50px;
    font-size: 0.70rem;
    font-weight: 500;
    margin-right: 5px;
    margin-bottom: 5px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.tag-color-1 { background: rgba(255, 107, 53, 0.15); color: #FF6B35; border-color: rgba(255, 107, 53, 0.2); }
.tag-color-2 { background: rgba(0, 180, 216, 0.15); color: #00B4D8; border-color: rgba(0, 180, 216, 0.2); }
.tag-color-3 { background: rgba(168, 85, 247, 0.15); color: #A855F7; border-color: rgba(168, 85, 247, 0.2); }
.tag-color-4 { background: rgba(255, 209, 102, 0.15); color: #FFD166; border-color: rgba(255, 209, 102, 0.2); }
.tag-color-5 { background: rgba(0, 200, 150, 0.15); color: #00C896; border-color: rgba(0, 200, 150, 0.2); }
.tag-color-6 { background: rgba(255, 99, 132, 0.15); color: #FF6384; border-color: rgba(255, 99, 132, 0.2); }
.tag-color-7 { background: rgba(54, 162, 235, 0.15); color: #36A2EB; border-color: rgba(54, 162, 235, 0.2); }
.tag-color-8 { background: rgba(255, 159, 64, 0.15); color: #FF9F40; border-color: rgba(255, 159, 64, 0.2); }

.tag.breakfast {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
}

.tag.lunch {
    background: rgba(0, 180, 216, 0.1);
    color: #00B4D8;
}

.tag.dinner {
    background: rgba(168, 85, 247, 0.1);
    color: #A855F7;
}

.tag.dessert {
    background: rgba(255, 209, 102, 0.1);
    color: var(--accent);
}

.get-btn {
    width: 100%;
    padding: clamp(10px, 2vw, 15px);
    background-color: var(--primary);
    color: var(--text);
    border: none;
    border-radius: var(--radius);
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    font-weight: 600;
    cursor: pointer;
    transition: var(--bounce);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(4px, 1vw, 8px);
    margin-top: auto;
    text-decoration: none;
}

.get-btn:hover {
    background-color: var(--primary-dark);
    transform: scale(1.05);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: clamp(20px, 4vw, 30px);
    right: clamp(20px, 4vw, 30px);
    background-color: #25D366;
    color: var(--text);
    width: clamp(50px, 10vw, 65px);
    height: clamp(50px, 10vw, 65px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(22px, 4vw, 28px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 99;
    transition: var(--bounce);
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 25px rgba(0,0,0,0.4);
}

/* Footer */
footer {
    background-color: rgba(18, 18, 18, 0.95);
    padding: 20px;
    color: var(--text);
    margin-top: clamp(60px, 10vw, 100px);
    backdrop-filter: blur(15px);
    width: 100%;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: clamp(30px, 5vw, 50px);
    margin-bottom: clamp(30px, 5vw, 50px);
}

.footer-column h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: clamp(15px, 3vw, 25px);
    color: var(--text);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: clamp(8px, 1.5vw, 12px);
}

.footer-column ul li a {
    color: rgba(224, 224, 224, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.footer-column ul li a:hover {
    color: var(--text);
    transform: translateX(5px);
}

/* Social Media */
.social-links {
    display: flex;
    gap: clamp(12px, 2vw, 18px);
    margin-top: clamp(20px, 3vw, 30px);
}

.social-links a {
    color: var(--text);
    width: clamp(35px, 8vw, 45px);
    height: clamp(35px, 8vw, 45px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--bounce);
    font-size: clamp(16px, 3vw, 18px);
    text-decoration: none;
}

.social-links a.pinterest {
    background: #BD081c;
}

.social-links a.tumblr {
    background: #36465D;
}

.social-links a.instagram {
    background: #dc2743;
}

.social-links a.whatsapp {
    background: #075E54;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.copyright {
    text-align: center;
    padding-top: clamp(25px, 4vw, 35px);
    border-top: 1px solid rgba(224, 224, 224, 0.1);
    color: rgba(224, 224, 224, 0.7);
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: clamp(12px, 2.5vw, 18px);
    }

    .logo {
        margin-bottom: 0;
    }

    .search-bar {
        width: 100%;
        margin: 0;
        max-width: none;
        order: 2;
    }

    .hero-slider {
        height: clamp(300px, 50vh, 450px);
    }

    .slide-content h1 {
        font-size: clamp(1.6rem, 6vw, 2.4rem);
    }

    .slide-content p {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }

    /* Two cards per row on mobile */
    .recipes-grid {
        grid-template-columns: repeat(2, minmax(150px, 1fr));
        gap:  clamp(17px, 3vw, 25px);
    }

    .pinned-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(15px, 3vw, 25px);
    }

    .recipe-card {
        min-width: 0;
        max-width: 100%;
    }
    .recipe-image-container {
        height: 120px;
    }

    .recipe-info {
        padding: 12px;
    }

    .recipe-title {
        font-size: 14px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 6px;
    }

    .recipe-tags {
        margin-bottom: 12px;
    }

    .tag {
        font-size: 10px;
        padding: 4px 8px;
    }

    .get-btn {
        padding: 8px;
        font-size: 12px;
    }

    .whatsapp-btn {
        width: clamp(45px, 12vw, 55px);
        height: clamp(45px, 12vw, 55px);
        font-size: clamp(20px, 5vw, 24px);
        bottom: clamp(15px, 3vw, 25px);
        right: clamp(15px, 3vw, 25px);
    }

    .categories-container {
        gap: clamp(8px, 2vw, 12px);
        padding: 12px 15px;
        margin: 0 -15px;
        scroll-padding: 0 15px;
    }
    
    .category-btn {
        padding: 8px 16px;
        font-size: clamp(12px, 2.5vw, 14px);
        white-space: nowrap;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    
    .category-btn i {
        font-size: 14px;
    }
}

/* Category Badge Styles */
.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: green;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
    transition: var(--transition);
}

.category-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.category-badge i {
    font-size: 14px;
}

.recipe-meta {
    margin-bottom: 8px;
    display: flex;
    justify-content: end;
}

@media (max-width: 480px) {
    .hero-slider {
        height: clamp(250px, 45vh, 350px);
    }

    .slide-content h1 {
        font-size: clamp(1.4rem, 7vw, 2rem);
    }

    .slide-content p {
        font-size: clamp(0.8rem, 3vw, 1.1rem);
    }

    .recipe-image-container {
        height: clamp(100px, 18vh, 150px);
    }

    /* Single column for very small screens */
    .recipes-grid {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
        gap: 10px;
    }

    .pinned-container {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
        gap: 10px;
    }

    .recipe-image-container {
        height: 100px;
    }

    .recipe-title {
        font-size: 13px;
    }
    
    .category-badge {
        font-size: 10px;
        padding: 4px 8px;
        gap: 4px;
    }
    
    .category-badge i {
        font-size: 12px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: clamp(25px, 5vw, 35px);
    }

    .container {
        padding: 0 clamp(12px, 3vw, 20px);
    }

    .section-title h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .section-title p {
        font-size: clamp(0.9rem, 3vw, 1rem);
    }
}