:root {
    /* Premium Medical Color Palette */
    --primary: #0f4c81;     /* Classic Trust Blue */
    --primary-light: #e6f0fa;
    --primary-hover: #0c3e69;
    --secondary: #10b981;   /* Fresh Emerald Green */
    --secondary-hover: #059669;
    --secondary-light: #ecfdf5;
    --accent: #0f172a;      /* Rich Dark Navy */
    
    --white: #ffffff;
    --bg-light: #f8fafc;
    --bg-lighter: #f1f5f9;
    
    --text-main: #334155;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    
    /* Shadows & Effects */
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
    --shadow-glow: 0 10px 25px -5px rgba(16, 185, 129, 0.4);
    
    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 30px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--accent);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1.5rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0.3px;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
}

.shadow-glow:hover {
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: #1da851;
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge {
    background-color: var(--secondary-light);
    color: var(--secondary-hover);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-tag {
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Navbar */
.navbar {
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    height: 70px;
}

.nav-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.5px;
}

.logo-text .highlight {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--text-main);
    font-size: 0.95rem;
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover::after, 
.nav-links a:not(.btn).active::after {
    width: 100%;
}

.nav-links a:not(.btn):hover, 
.nav-links a:not(.btn).active {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    color: var(--accent);
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 180px;
    padding-bottom: 100px;
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--bg-light) 100%);
    overflow: hidden;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.hero-bg-shapes .shape-1 {
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: rgba(16, 185, 129, 0.15);
}

.hero-bg-shapes .shape-2 {
    bottom: 10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(15, 76, 129, 0.1);
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.75rem;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-wrapper img {
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
    border: 1px solid rgba(255,255,255,0.5);
}

.floating-card.top-float {
    bottom: 40px;
    left: -40px;
}

.floating-card .icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--secondary-light);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card strong {
    display: block;
    color: var(--accent);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.floating-card span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* About Section */
.about {
    padding: 120px 0;
    background-color: var(--white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.img-frame {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 15px;
    background: white;
    box-shadow: var(--shadow-xl);
}

.img-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border-radius: var(--radius-lg);
    background: var(--primary-light);
    z-index: -1;
}

.about-image img {
    border-radius: calc(var(--radius-lg) - 5px);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.doctor-name {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.qualifications {
    font-size: 0.95rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 12px;
}

.experience {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.about-content .description {
    margin-bottom: 30px;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.features {
    margin-bottom: 40px;
}

.features li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-weight: 500;
    color: var(--accent);
}

.check-icon {
    width: 28px;
    height: 28px;
    background-color: var(--secondary-light);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-icon i {
    width: 14px;
    height: 14px;
}

/* Services Section */
.services {
    padding: 120px 0;
    background-color: var(--bg-lighter);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.75rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.service-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 0;
    background: var(--secondary);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--border-color);
}

.service-card:hover::after {
    width: 100%;
}

.service-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 16px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
}

.service-link:hover {
    color: var(--secondary);
    gap: 10px;
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background: var(--white);
}

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

.testimonial-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-md);
    position: relative;
    border: 1px solid var(--border-color);
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--primary-light);
    opacity: 0.5;
}

.quote-icon i {
    width: 48px;
    height: 48px;
}

.stars {
    color: #fbbc04;
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 30px;
    font-size: 1.05rem;
    color: var(--text-main);
}

.patient-profile {
    display: flex;
    align-items: center;
    gap: 16px;
}

.patient-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.patient-info strong {
    display: block;
    color: var(--accent);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.patient-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Gallery */
.gallery {
    padding: 100px 0 120px;
    background-color: var(--bg-lighter);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

/* FAQ */
.faq {
    padding: 120px 0;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    background: var(--white);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--accent);
}

.faq-icon i {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-item.active .faq-icon i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px;
    max-height: 200px;
}

/* Appointment */
.appointment {
    position: relative;
    padding: 120px 0;
}

.appointment-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: var(--primary);
    z-index: -1;
}

.appointment-container {
    display: flex;
    justify-content: center;
}

.appointment-card {
    background: var(--white);
    padding: 60px;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 800px;
    box-shadow: var(--shadow-xl);
}

.appointment-header {
    text-align: center;
    margin-bottom: 40px;
}

.appointment-header h2 {
    font-size: 2.25rem;
    margin-bottom: 12px;
}

.appointment-header p {
    color: var(--text-muted);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent);
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    width: 18px;
    height: 18px;
}

.input-wrapper input, 
.input-wrapper select {
    padding-left: 46px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background: var(--bg-lighter);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    color: var(--text-main);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
    background: var(--white);
}

.divider {
    text-align: center;
    margin: 24px 0;
    position: relative;
}

.divider::before, .divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 42%;
    height: 1px;
    background: var(--border-color);
}

.divider::before { left: 0; }
.divider::after { right: 0; }

.divider span {
    background: var(--white);
    padding: 0 12px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Footer */
.footer {
    padding-top: 80px;
    background-color: var(--accent);
    color: #cbd5e1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-info h3 {
    font-size: 1.75rem;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-info p {
    margin-bottom: 32px;
    color: #94a3b8;
    max-width: 350px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    color: #cbd5e1;
}

.icon-blob {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

.footer h4 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 1.25rem;
}

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

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.hours-card {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.1);
}

.hour-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 12px;
}

.hour-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.hour-row.highlight strong {
    color: #ef4444;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
}

.social-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.map-container {
    filter: grayscale(0.8) contrast(1.2);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: #64748b;
}

.d-flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-container, .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    
    .hero-content h1 {
        font-size: 2.75rem;
    }
    
    .hero-content p, .hero-actions, .hero-stats {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }
    
    .hero-bg-shapes .shape-1 { right: -50%; width: 300px; height: 300px; }
    .hero-bg-shapes .shape-2 { left: -50%; width: 250px; height: 250px; }
    
    .floating-card.top-float {
        left: 10px;
        bottom: 10px;
        padding: 10px 16px;
    }
    .floating-card .icon-box {
        width: 36px;
        height: 36px;
    }
    
    .features li {
        justify-content: center;
        text-align: left;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Reduce massive paddings */
    .about, .services, .testimonials, .faq, .appointment {
        padding: 80px 0;
    }
    .gallery {
        padding: 60px 0 80px;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu CSS Approach */
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 0;
        box-shadow: var(--shadow-md);
        display: none;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    }
    
    .nav-links.open {
        display: flex;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        padding: 20px;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .nav-links .btn {
        width: 100%;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    /* Make large gallery child just span 1 on small screens to prevent breakage */
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .appointment-card {
        padding: 30px 20px;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
}
