/* =============================================
   UKF SERVICES - GLOBAL CSS
   Production Ready with Design System v1.0
   FIXED: All compatibility issues resolved
   ============================================= */

/* 1. BOX-SIZING RESET */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* 2. ROOT VARIABLES - DESIGN SYSTEM */
:root {
    /* Brand Colors - FIXED */
    --primary: #0d1b2a;        /* Navy - FIXED to match other CSS files */
    --primary-dark: #0d1520;   
    --secondary: #1a2332;      /* ADDED - was missing */
    --accent: #d4af37;         /* Gold */
    --accent-dark: #b8941f;
    
    /* Text Colors */
    --text-dark: #1a2332;
    --text-light: #ffffff;
    --text-muted: #666666;
    --text: #2d3748;
    
    /* Background Colors */
    --bg-light: #ffffff;
    --bg-dark: #0d1b2a;
    --background: #f7fafc;
    --overlay: rgba(13, 27, 42, 0.85);  /* FIXED to match cinematic.css */
    
    /* UI Colors */
    --border-color: rgba(0, 0, 0, 0.1);
    --border: #e2e8f0;
    
    /* Status Colors */
    --success: #48bb78;
    --warning: #ed8936;
    --error: #f56565;
    --info: #4299e1;
    
    /* Spacing - CONSISTENT SCALE */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-index layers */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-tooltip: 1070;
}

/* 3. BASE STYLES */
html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
    animation: fadeIn 0.4s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.25;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* 4. CONTAINER SYSTEM */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-fluid {
    width: 100%;
    max-width: 100%;
    padding: 0 var(--spacing-md);
}

/* 5. GRID SYSTEM */
.grid {
    display: grid;
    gap: var(--spacing-md);
}

.grid-cols-1 { grid-template-columns: 1fr; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

.grid-auto-fit {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: var(--spacing-md);
}

/* 6. FLEXBOX UTILITIES */
.flex {
    display: flex;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.flex-wrap {
    flex-wrap: wrap;
}

/* 7. NAVIGATION - FIXED */
nav,
#nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: var(--z-fixed);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary);
    transition: all var(--transition-normal);
}

nav.scrolled,
#nav.scrolled {
    background: rgba(13, 27, 42, 0.95);  /* FIXED: Uses correct primary color */
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: 2px;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color var(--transition-normal);
    position: relative;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a.active {
    color: var(--accent);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
}

.nav-cta {
    margin-left: 1rem;
}

.cta-btn {
    background: var(--accent);
    color: var(--primary);
    padding: 0.8rem 2rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-family: var(--font-primary);
    letter-spacing: 0.5px;
    border-radius: 8px;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* 8. BUTTONS */
.btn-primary {
    background: var(--accent);
    color: var(--primary);
    padding: 1.2rem 3rem;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-normal);
    border-radius: 8px;
    font-size: 1rem;
    display: inline-block;
    text-decoration: none;  /* ADDED */
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);  /* FIXED: Changed from var(--primary) for hero buttons */
    border: 2px solid var(--text-light);
    padding: 1.2rem 3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    border-radius: 8px;
    font-size: 1rem;
    display: inline-block;
    text-decoration: none;  /* ADDED */
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary);
}

/* 9. CARDS */
.card {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all var(--transition-normal);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* Blog/Article Card */
.blog-card {
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.blog-image {
    height: 220px;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 15px;
}

.blog-badge {
    background: var(--accent);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.blog-content-inner {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    display: inline-block;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.blog-meta i {
    color: var(--accent);
    margin-right: 5px;
}

.blog-excerpt {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.blog-cta {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
    display: inline-block;
}

.blog-cta:hover {
    color: var(--primary);
    transform: translateX(5px);
}

/* Testimonial Card */
.testimonial-card {
    background: linear-gradient(135deg, var(--primary) 0%, #1a2332 100%);  /* FIXED gradient */
    color: var(--text-light);
    border-radius: 15px;
    padding: 35px;
    position: relative;
}

.testimonial-card .quote-icon {
    font-size: 3rem;
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 20px;
}

/* 10. SECTIONS */
section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 5%;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 4rem;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* 11. FORMS */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all var(--transition-fast);
    background: var(--bg-light);
}

.form-control:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* 12. FOOTER */
.footer {
    background: var(--primary);
    color: var(--text-light);
    padding: 4rem 5% 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-column h4 {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--accent);
}

.footer-description {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all var(--transition-normal);
    font-size: 1.2rem;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-contact a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color var(--transition-normal);
    font-size: 0.95rem;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--accent);
}

.footer-contact {
    color: rgba(255,255,255,0.7);
}

.footer-contact i {
    margin-right: 0.75rem;
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    color: rgba(255,255,255,0.7);
    margin: 0;
    font-size: 0.9rem;
}

.footer-cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #0d1520 100%);
    padding: 3rem 5%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-cta-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

/* 13. UTILITY CLASSES */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

/* 14. RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .grid-cols-4,
    .grid-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    nav,
    #nav {
        padding: 1rem 5%;
    }
    
    .nav-links {
        display: none;  /* Mobile menu not implemented - needs JavaScript */
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .grid-cols-4,
    .grid-cols-3,
    .grid-cols-2 {
        grid-template-columns: 1fr;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    section {
        padding: 3rem 5%;
    }
}

/* 15. ACCESSIBILITY */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus states */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

/* 16. ANIMATIONS */
@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

/* 17. PRINT STYLES */
@media print {
    nav,
    .footer,
    .sticky-cta,
    .modal-overlay,
    .chat-bubble {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    a {
        text-decoration: underline;
    }
}

/* 18. REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* 19. HIGH CONTRAST MODE */
@media (prefers-contrast: high) {
    :root {
        --border-color: rgba(0, 0, 0, 0.3);
    }
    
    button,
    a {
        outline: 2px solid currentColor;
    }
}

/* ========================================
   20. SERVICES SECTION STYLES
   Essential for services.html layout
   ======================================== */

/* Services Grid Container */
.row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.gx-5 {
    column-gap: 3rem;
}

.gy-4 {
    row-gap: 2.5rem;
}

/* Service Cards Specific Styling */
.services-section .service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(13, 27, 42, 0.08);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(13, 27, 42, 0.05);
}

.services-section .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.services-section .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
    border-color: var(--accent);
}

.services-section .service-card:hover::before {
    transform: scaleX(1);
}

.services-section .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.services-section .service-icon i {
    font-size: 2rem;
    color: white;
}

.services-section .service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.35);
}

.services-section .service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.services-section .service-card p {
    color: var(--text);
    line-height: 1.7;
    font-size: 0.98rem;
    margin-bottom: 20px;
}

/* Service Card Action Buttons */
.card-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(13, 27, 42, 0.08);
}

.btn-quick-view,
.btn-explore {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
}

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

.btn-quick-view:hover {
    background: var(--secondary);
    transform: translateX(-2px);
}

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

.btn-explore:hover {
    background: var(--accent);
    color: white;
    transform: translateX(2px);
}

/* All Services Link */
.all-services {
    text-align: center;
    margin-top: 60px;
}

.all-services-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(13, 27, 42, 0.15);
}

.all-services-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
    background: var(--accent);
}

.all-services-icon {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.all-services-link:hover .all-services-icon {
    transform: translateX(5px);
}

/* Service Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 27, 42, 0.85);
    backdrop-filter: blur(5px);
}

.modal .modal-content {
    background: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    max-width: 700px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 40px;
    color: white;
    position: relative;
}

.modal .close {
    position: absolute;
    right: 25px;
    top: 25px;
    font-size: 2rem;
    font-weight: 300;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.modal .close:hover {
    background: var(--accent);
    transform: rotate(90deg);
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.modal-icon i {
    font-size: 2.5rem;
    color: var(--accent);
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin: 0;
    font-weight: 600;
}

.modal-body {
    padding: 40px;
}

.modal-description {
    color: var(--text);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.modal-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.modal-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

/* Services Section Responsive */
@media (max-width: 768px) {
    .row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-section .service-card {
        padding: 30px 20px;
    }
    
    .card-actions {
        flex-direction: column;
    }
    
    .modal .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .modal-header {
        padding: 30px 20px;
    }
    
    .modal-body {
        padding: 25px 20px;
    }
    
    .modal-title {
        font-size: 1.6rem;
    }
}
