@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2C5530;
    --secondary-color: #4A7C59;
    --accent-color: #8FBC8F;
    --gold-color: #D4AF37;
    --cream-color: #F5F5DC;
    --warm-white: #FEFDF8;
    --soft-gray: #7A7A7A;
    --dark-green: #1B3A1F;
    --light-green: #E8F5E8;
    --shadow: 0 8px 30px rgba(44, 85, 48, 0.1);
    --transition: all 0.4s ease;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(254, 253, 248, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 30px rgba(44, 85, 48, 0.1);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-color);
}

.logo i {
    font-size: 2.2rem;
    color: var(--secondary-color);
}

.logo h2 {
    font-size: 1.8rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.7), rgba(74, 124, 89, 0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--warm-white);
    max-width: 800px;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(143, 188, 143, 0.9);
    color: var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.3s backwards;
}

.hero-text p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    line-height: 1.7;
    text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.9s backwards;
}

.btn-primary {
    background: var(--gold-color);
    color: var(--primary-color);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
    background: #E6C547;
}

.btn-outline {
    background: transparent;
    color: var(--warm-white);
    padding: 1.2rem 2.5rem;
    border: 2px solid var(--warm-white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--warm-white);
    color: var(--primary-color);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--warm-white);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.scroll-indicator i {
    font-size: 1.5rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Location Highlight */
.location-highlight {
    padding: 6rem 0;
    background: var(--light-green);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.location-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}

.location-image:hover img {
    transform: scale(1.05);
}

.location-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold-color);
    color: var(--primary-color);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.location-text h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.location-text p {
    font-size: 1.1rem;
    color: var(--soft-gray);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.feature-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    width: 60px;
    flex-shrink: 0;
    margin-top: 0.3rem;
}

.feature-item h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--soft-gray);
    line-height: 1.6;
}

/* Section Styling */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.6rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--soft-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About Section */
.about {
    position: relative;
    background: var(--warm-white);
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
}

.about-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--warm-white);
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.2rem;
    color: var(--soft-gray);
    margin-bottom: 4rem;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: var(--light-green);
    border-radius: 20px;
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: var(--warm-white);
}

.value-item h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--soft-gray);
    line-height: 1.6;
}

/* Menu Section */
.menu {
    background: var(--cream-color);
}

.menu-showcase {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.menu-category h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.menu-category h3 i {
    color: var(--secondary-color);
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: var(--warm-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(44, 85, 48, 0.15);
}

.menu-item img {
    width: 120px;
    height: 100px;
    object-fit: cover;
    border-radius: 15px;
    flex-shrink: 0;
}

.item-info h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.item-info p {
    color: var(--soft-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.price {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold-color);
}

/* Gallery Section */
.gallery {
    background: var(--warm-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(4, 200px);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:nth-child(1) {
    grid-column: 1 / 8;
    grid-row: 1 / 3;
}

.gallery-item:nth-child(2) {
    grid-column: 8 / 13;
    grid-row: 1 / 2;
}

.gallery-item:nth-child(3) {
    grid-column: 8 / 13;
    grid-row: 2 / 3;
}

.gallery-item:nth-child(4) {
    grid-column: 1 / 5;
    grid-row: 3 / 5;
}

.gallery-item:nth-child(5) {
    grid-column: 5 / 13;
    grid-row: 3 / 5;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(44, 85, 48, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--warm-white);
    padding: 3rem 2rem 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Location Section */
.location-section {
    background: var(--light-green);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.location-info h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.location-info p {
    font-size: 1.2rem;
    color: var(--soft-gray);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.address-card {
    background: var(--warm-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.address-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.address-header i {
    font-size: 2rem;
    color: var(--gold-color);
    margin-top: 0.3rem;
}

.address-header h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.address-header p {
    color: var(--soft-gray);
    margin: 0;
    line-height: 1.5;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    width: 40px;
    margin-top: 0.3rem;
}

.detail-item h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.detail-item p {
    color: var(--soft-gray);
    margin: 0;
    line-height: 1.5;
}

.nearby-landmarks {
    background: var(--warm-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.nearby-landmarks h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nearby-landmarks h4 i {
    color: var(--secondary-color);
}

.nearby-landmarks ul {
    list-style: none;
}

.nearby-landmarks li {
    padding: 0.8rem 0;
    color: var(--soft-gray);
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--light-green);
}

.nearby-landmarks li:last-child {
    border-bottom: none;
}

.nearby-landmarks li i {
    color: var(--accent-color);
    width: 20px;
}

.map-container {
    position: relative;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.map-pin {
    background: var(--gold-color);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Testimonials */
.testimonials {
    background: var(--cream-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--warm-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(44, 85, 48, 0.15);
}

.stars {
    color: var(--gold-color);
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.testimonial-card p {
    color: var(--soft-gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-style: italic;
    font-size: 1.1rem;
}

.reviewer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.avatar {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm-white);
    font-size: 1.5rem;
}

.reviewer .info h4 {
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}

.reviewer .info span {
    color: var(--soft-gray);
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    position: relative;
    background: var(--primary-color);
    color: var(--warm-white);
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.contact-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
}

.contact-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-text h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.contact-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
}

.reservation-form {
    background: rgba(254, 253, 248, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid var(--light-green);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    color: var(--primary-color);
    background: var(--warm-white);
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.submit-btn {
    width: 100%;
    background: var(--gold-color);
    color: var(--primary-color);
    padding: 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #E6C547;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* Footer */
.footer {
    background: var(--dark-green);
    color: var(--warm-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.footer-logo h3 {
    font-size: 2rem;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
}

.footer-section p {
    color: #B8C8BA;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm-white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-section ul li a {
    color: #B8C8BA;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-section ul li i {
    color: var(--accent-color);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--secondary-color);
    color: #B8C8BA;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background: rgba(254, 253, 248, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 3rem 2rem;
        transition: var(--transition);
        gap: 0;
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .location-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .menu-items {
        grid-template-columns: 1fr;
    }

    .menu-item {
        flex-direction: column;
        text-align: center;
    }

    .menu-item img {
        width: 100%;
        height: 200px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 250px);
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5) {
        grid-column: 1;
        grid-row: auto;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .location-text h2,
    .about-text h2,
    .contact-text h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 2rem;
    }
}