:root {
    --primary-color: #0f172a;
    /* Dark Blue */
    --secondary-color: #0ea5e9;
    /* Sky Blue */
    --accent-color: #10b981;
    /* Emerald Green */
    --text-color: #334155;
    --bg-color: #f8fafc;
    --white: #ffffff;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --font-main: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius: 0.75rem;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    color: var(--primary-color);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.header {
    background-color: #ffffff;
    backdrop-filter: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 52px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color);
}

.nav-link:hover {
    color: var(--secondary-color);
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 90vh;
    overflow: hidden;
    margin-top: 0;
    /* Reset margin since header is fixed */
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7));
    z-index: 2;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    color: var(--white);
}

.slide .hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slide .text-gradient {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Override text shadow for gradient text to keep it clean or adjust */
    text-shadow: none;
}

.slide .hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray-100);
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

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

.btn-outline {
    border: 2px solid var(--white);
    background-color: transparent;
    color: var(--white);
}

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

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 20;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.prev-btn {
    left: 2rem;
}

.next-btn {
    right: 2rem;
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--secondary-color);
    transform: scale(1.2);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-desc {
    color: #64748b;
    font-size: 1.1rem;
}

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

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--gray-100);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: #e0f2fe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-card p {
    color: #64748b;
    font-size: 0.95rem;
}

/* Detailed Section */
.details-section {
    padding: 5rem 0;
    background-color: var(--gray-100);
}

.details-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.details-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-block {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.detail-block h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    border-bottom: 2px solid var(--gray-100);
    padding-bottom: 0.5rem;
}

.detail-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.detail-list li::before {
    content: "•";
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.image-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.price-card {
    background: linear-gradient(135deg, var(--primary-color), #1e293b);
    color: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.price-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.price .period {
    font-size: 1rem;
    color: var(--gray-200);
    font-weight: 400;
}

.price-note {
    font-size: 0.9rem;
    color: var(--gray-200);
    margin-bottom: 1.5rem;
}

.price-card hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 1.5rem 0;
}

.payment-terms {
    font-size: 0.85rem;
    color: var(--gray-200);
    margin-bottom: 1.5rem;
}

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

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-list {
    margin-top: 2rem;
}

.features-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.check {
    color: var(--accent-color);
    font-weight: bold;
}

.about-image {
    height: 400px;
    background-color: var(--gray-200);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder {
    color: #94a3b8;
    font-weight: 600;
    font-size: 1.5rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--gray-100);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    background-color: var(--white);
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    padding: 3rem;
    border: 1px solid var(--gray-100);
}

.contact-info {
    padding-right: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    font-weight: 400;
    font-size: 0.9rem;
}

.checkbox-group a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.btn-block {
    width: 100%;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.company-details {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--white);
}

.copyright {
    color: #64748b;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        padding: 0.5rem 1.5rem;
    }

    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-md);
    }

    .nav-list.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .slide .hero-title {
        font-size: 2.5rem;
    }

    .slide-content {
        padding: 0 3.5rem;
        /* Prevent text from overlapping with arrows */
    }

    .about-container,
    .contact-wrapper,
    .details-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-wrapper {
        padding: 1.5rem;
    }

    .details-sidebar {
        order: -1;
        /* Show images first on mobile */
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        background-color: rgba(255, 255, 255, 0.1);
        /* More transparent on mobile */
    }

    .prev-btn {
        left: 0.5rem;
    }

    .next-btn {
        right: 0.5rem;
    }

    .hero-slider {
        height: 100dvh;
        min-height: 100dvh;
    }

    .slide {
        height: 100%;
        width: 100%;
    }

    .slide-bg {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.whatsapp-btn svg {
    width: 35px;
    height: 35px;
    fill: white;
}
/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-card .card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.pricing-card .period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.pricing-card .card-body {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.pricing-card .feature-list {
    list-style: none;
    padding: 0;
}

.pricing-card .feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.pricing-card .check {
    color: var(--secondary);
    font-weight: bold;
    flex-shrink: 0;
}

.pricing-card .btn-block {
    width: 100%;
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.pricing-note a {
    color: var(--primary);
    text-decoration: none;
}

.pricing-note a:hover {
    text-decoration: underline;
}

/* Button Outline Variant */
.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

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

@media (max-width: 768px) {
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
}

/* Enhanced Pricing Styles */
:root {
    --card-bg: #ffffff;
    --card-border: #e2e8f0;
    --btn-hover: #0284c7;
}

.pricing-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.pricing-card.popular {
    background-color: #f0f9ff; /* Light blue tint for popular */
    border-color: var(--secondary-color);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.pricing-card h3 {
    color: var(--primary-color);
    font-weight: 800;
}

.btn-primary {
    background-color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px -1px rgba(14, 165, 233, 0.4);
}

.btn-primary:hover {
    background-color: var(--btn-hover);
    box-shadow: 0 10px 15px -3px rgba(14, 165, 233, 0.5);
}

.btn-outline {
    border-width: 2px;
    font-weight: 700;
}

/* --- Visual Enhancements (Speciale Condomini & Pricing) --- */

/* Speciale Condomini Cards */
.details-section .detail-block {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.details-section .detail-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.details-section .detail-block h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid var(--secondary-color);
    display: inline-block;
    padding-bottom: 0.5rem;
}

.details-section .detail-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-color);
}

.details-section .detail-list li::before {
    content: "✓";
    color: var(--accent-color);
    font-weight: 900;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Unified Pricing Buttons */
.pricing-card .card-footer {
    text-align: center;
}

.pricing-card .btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 1rem;
    border-radius: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    background-color: var(--secondary-color);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 6px rgba(14, 165, 233, 0.3);
    text-decoration: none; /* Ensure no underline */
}

.pricing-card .btn:hover {
    background-color: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(14, 165, 233, 0.4);
    color: #ffffff;
}

/* Popular Tag Ribbon */
.pricing-card {
    position: relative;
    overflow: hidden;
}

.popular-tag {
    background-color: #f59e0b; /* Amber/Orange for high visibility */
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    padding: 0.5rem 0;
    position: absolute;
    top: 25px;
    right: -30px;
    transform: rotate(45deg);
    width: 120px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 10;
    letter-spacing: 0.5px;
}

/* --- Fixes for Layout Overlap and Button Styles --- */

/* Fix Overlap: Ensure detail blocks don't force fixed height causing overlap */
.details-section .detail-block {
    height: auto !important; /* Override previous height: 100% */
    margin-bottom: 0; /* Let grid gap handle spacing */
}

/* Ensure container flows correctly */
.details-content {
    display: block !important; /* Override flex column if it causes issues */
    margin-bottom: 4rem;
}

/* Fix Pricing Buttons: Force consistent style */
.pricing-card .btn,
.pricing-card .btn.btn-outline,
.pricing-card .btn.btn-primary {
    background-color: var(--secondary-color) !important;
    color: #ffffff !important;
    border: none !important;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    border-radius: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(14, 165, 233, 0.3);
    text-decoration: none;
}

.pricing-card .btn:hover,
.pricing-card .btn.btn-outline:hover,
.pricing-card .btn.btn-primary:hover {
    background-color: #0284c7 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(14, 165, 233, 0.4);
    color: #ffffff !important;
}

/* Fix Popular Tag Overlap */
.popular-tag {
    top: 15px !important;
    right: -35px !important;
    width: 140px !important; /* Make it slightly longer to ensure it spans the corner */
    font-size: 0.7rem !important; /* Slightly smaller font if needed */
}

/* Re-style Popular Tag: Horizontal Centered Pill */
.pricing-card {
    overflow: visible !important; /* Allow tag to float above */
}

.popular-tag {
    top: -15px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important; /* Replaces rotation */
    width: auto !important;
    padding: 0.35rem 1.5rem !important;
    border-radius: 50px !important;
    font-size: 0.85rem !important;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.4) !important;
    text-align: center !important;
    letter-spacing: 1px !important;
}

/* --- Refactored 2x2 Details Grid --- */
.details-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.detail-block h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.detail-icon {
    color: var(--secondary-color);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .details-grid-2x2 {
        grid-template-columns: 1fr;
    }
}
