/*
Theme Name: JewelersFlow App
Theme URI: https://jewelersflow.com
Author: JewelersFlow
Author URI: https://jewelersflow.com
Description: A modern, responsive WordPress theme designed specifically for advertising the JewelersFlow app. Features a clean, professional design with app download sections, feature highlights, and compelling call-to-action elements.
Version: 1.0.18
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jewelersflow-app
Tags: app, landing-page, mobile, responsive, modern
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Header Styles */
.site-header {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a365d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-logo:hover {
    color: #2c5282;
}

/* Navigation Styles */
.main-navigation {
    display: flex;
    align-items: center;
}

.primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    align-items: center;
}

.primary-menu li {
    margin: 0;
    padding: 0;
    position: relative;
}

.primary-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
}

.primary-menu a:hover,
.primary-menu a:focus {
    color: #3182ce;
    background-color: rgba(49, 130, 206, 0.08);
}

.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a {
    color: #3182ce;
    background-color: rgba(49, 130, 206, 0.1);
    font-weight: 600;
}

/* Menu Toggle Button (Hamburger) */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
    outline: none;
}

.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 18px;
    position: relative;
}

.menu-toggle-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #333;
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.3s ease;
}

.menu-toggle-icon span:nth-child(1) {
    top: 0;
}

.menu-toggle-icon span:nth-child(2) {
    top: 8px;
}

.menu-toggle-icon span:nth-child(3) {
    top: 16px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg);
}

.menu-toggle:hover .menu-toggle-icon span,
.menu-toggle:focus .menu-toggle-icon span {
    background: #3182ce;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0 20px;
        margin: 0;
    }
    
    .main-navigation.active {
        max-height: 500px;
        padding: 1rem 20px;
    }
    
    .primary-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
        align-items: stretch;
    }
    
    .primary-menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .primary-menu li:last-child {
        border-bottom: none;
    }
    
    .primary-menu a {
        padding: 1rem 1.5rem;
        border-radius: 0;
        text-align: left;
        width: 100%;
    }
    
    .primary-menu a:hover,
    .primary-menu a:focus {
        background-color: rgba(102, 126, 234, 0.1);
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
    }
    
    .primary-menu a {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
}

/* Hero Section */
.hero-section {
    background-color: #0a0e27;
    background-image: url('assets/images/hero-background.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 39, 0.4);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.app-icon-hero {
    width: 120px;
    height: 120px;
    border-radius: 26px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-section p {
    font-size: 1.375rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* App Download Buttons */
.app-download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.download-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.download-button svg {
    width: 24px;
    height: 24px;
}

/* Features Section */
.features-section {
    padding: 0;
    background: transparent;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    background: #ffffff;
    border-radius: 0;
}

.section-title {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 3.5rem;
    color: #2c3e50;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 3rem;
}

@media (min-width: 1400px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

/* Tabs Section */
.tabs-section {
    padding: 80px 20px;
    background: #ffffff;
    position: relative;
}

.tabs-container {
    max-width: 1400px;
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0;
}

.tab-button {
    background: transparent;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    font-family: inherit;
}

.tab-button:hover {
    color: #3182ce;
}

.tab-button.active {
    color: #3182ce;
    border-bottom-color: #3182ce;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

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

/* Screenshots Section */
.screenshots-section {
    padding: 0;
    background: #ffffff;
}

.screenshots-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    background: #ffffff;
}

/* Device Selector (iPad/iPhone) */
.device-selector {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.device-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #f5f5f5;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.device-button:hover {
    background: #e8e8e8;
}

.device-button.active {
    background: #3182ce;
    color: white;
    border-color: #3182ce;
}

.device-button svg {
    width: 20px;
    height: 20px;
    pointer-events: none;
}

/* Device Screenshots Container */
.device-screenshots {
    display: none;
}

.device-screenshots.active {
    display: block;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
    justify-items: center;
    grid-gap: 30px; /* Fallback for older browsers */
}

@supports not (gap: 30px) {
    .screenshots-grid {
        grid-gap: 30px;
    }
    
    .screenshots-grid > * {
        margin: 15px;
    }
}

/* iPhone screenshots grid - different sizing */
.device-screenshots[data-device="iphone"] .screenshots-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.screenshots-grid .iphone-screenshot {
    max-width: 300px;
    width: auto;
}

.screenshot-item {
    text-align: center;
}

.screenshot-item img,
.screenshot-item .app-screenshot {
    width: 100%;
    max-width: 500px;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    display: block;
    margin: 0 auto;
}

/* iPhone screenshots use portrait aspect ratio - must override iPad styles */
.screenshot-item img.iphone-screenshot,
.screenshot-item .app-screenshot.iphone-screenshot {
    aspect-ratio: 9/16;
    max-width: 300px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Fallback for older browsers that don't support aspect-ratio */
@supports not (aspect-ratio: 4/3) {
    .screenshot-item img,
    .screenshot-item .app-screenshot {
        height: 0;
        padding-bottom: 75%; /* 3/4 = 75% for 4:3 ratio */
        position: relative;
    }
    
    .screenshot-item img.iphone-screenshot {
        padding-bottom: 177.78%; /* 16/9 = 177.78% for 9:16 portrait ratio */
    }
    
    .screenshot-item img img,
    .screenshot-item .app-screenshot img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.screenshot-item img:hover {
    transform: scale(1.05);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.cta-section p {
    font-size: 1.375rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* Support Page Styles */
.site-main {
    padding: 0;
}

.support-page {
    padding: 40px 20px;
    background: #f8f9fa;
    min-height: calc(100vh - 200px);
}

.support-container {
    max-width: 1000px;
    margin: 0 auto;
}

.support-hero {
    text-align: center;
    padding: 80px 20px;
    background-color: #0a0e27;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    border-radius: 20px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.support-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 39, 0.4);
    pointer-events: none;
    z-index: 1;
    border-radius: 20px;
}

.support-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.support-hero-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin: 0;
}

.quick-links-section {
    margin-bottom: 60px;
}

.quick-links-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.quick-link-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.quick-link-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.quick-link-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.quick-link-card p {
    color: #666;
    font-size: 0.95rem;
}

.support-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.support-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
    border-bottom: 3px solid #3182ce;
    padding-bottom: 15px;
}

.support-content {
    line-height: 1.8;
}

.support-content h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #444;
}

.support-content h3:first-child {
    margin-top: 0;
}

.support-content p {
    margin-bottom: 15px;
    color: #555;
}

.support-content ul,
.support-content ol {
    margin: 15px 0;
    padding-left: 30px;
    color: #555;
}

.support-content li {
    margin-bottom: 10px;
}

.support-content strong {
    color: #333;
}

.feature-guide-item {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.feature-guide-item:last-child {
    border-bottom: none;
}

.troubleshooting-item {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #3182ce;
}

.troubleshooting-item h3 {
    margin-top: 0;
    color: #3182ce;
}

.faq-item {
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
}

.faq-item h3 {
    margin-top: 0;
    color: #333;
    font-size: 1.2rem;
}

.faq-item p {
    margin-bottom: 0;
}

.support-contact {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
}

.support-contact h2 {
    color: white;
    border-bottom: none;
    margin-bottom: 20px;
}

.support-contact p {
    color: rgba(255,255,255,0.95);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.support-contact a {
    color: white;
    text-decoration: underline;
}

.support-contact a:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .support-hero-content h1 {
        font-size: 2rem;
    }
    
    .support-section {
        padding: 25px 20px;
    }
    
    .support-section h2 {
        font-size: 1.5rem;
    }
    
        .quick-links-grid {
            grid-template-columns: 1fr;
        }
    }

/* Terms of Use Page Styles - Apple Design Principles */
.terms-page {
    padding: 0;
    background: #ffffff;
    min-height: calc(100vh - 200px);
}

.terms-container {
    max-width: 780px;
    margin: 0 auto;
    padding: 60px 40px;
}

.terms-hero {
    text-align: left;
    padding: 0;
    background: transparent;
    color: #1d1d1f;
    border-bottom: 1px solid #d2d2d7;
    padding-bottom: 30px;
    margin-bottom: 50px;
}

.terms-hero h1 {
    font-size: 2rem;
    margin-bottom: 8px;
    color: #1d1d1f;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.terms-hero p {
    font-size: 0.875rem;
    color: #86868b;
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
}

.legal-notice {
    background: #f5f5f7;
    border: none;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 50px;
    box-shadow: none;
}

.legal-notice.important {
    background: #f5f5f7;
    border: none;
    margin-top: 50px;
}

.legal-notice h3 {
    color: #1d1d1f;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.016em;
    line-height: 1.42105;
}

.legal-notice p {
    margin-bottom: 10px;
    color: #1d1d1f;
    line-height: 1.47059;
    font-size: 0.8125rem;
    letter-spacing: -0.022em;
}

.legal-notice p:last-child {
    margin-bottom: 0;
}

.terms-content {
    background: transparent;
    padding: 0;
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: none;
    line-height: 1.47059;
}

.terms-section {
    margin-bottom: 50px;
    padding-bottom: 0;
    border-bottom: none;
}

.terms-section:last-child {
    margin-bottom: 0;
}

.terms-section h2 {
    font-size: 1.125rem;
    margin-bottom: 16px;
    margin-top: 0;
    color: #1d1d1f;
    border-bottom: none;
    padding-bottom: 0;
    font-weight: 600;
    letter-spacing: -0.016em;
    line-height: 1.42105;
}

.terms-section > p:first-of-type {
    margin-top: 0;
}

.terms-section p {
    margin-bottom: 16px;
    color: #1d1d1f;
    font-size: 0.8125rem;
    line-height: 1.64706;
    letter-spacing: -0.022em;
    max-width: 100%;
}

.terms-section p:last-child {
    margin-bottom: 0;
}

.terms-section ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
    color: #1d1d1f;
}

.terms-section ul:last-child {
    margin-bottom: 0;
}

.terms-section ul:first-of-type {
    margin-top: 20px;
}

.terms-section li {
    margin-bottom: 12px;
    font-size: 0.8125rem;
    line-height: 1.64706;
    letter-spacing: -0.022em;
    padding-left: 24px;
    position: relative;
}

.terms-section li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #86868b;
    font-weight: 600;
    font-size: 1.2em;
    line-height: 1;
}

.terms-section li:last-child {
    margin-bottom: 0;
}

.terms-section strong {
    color: #1d1d1f;
    font-weight: 600;
    letter-spacing: -0.022em;
}

.terms-section a {
    color: #0066cc;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 102, 204, 0.3);
    transition: border-color 0.2s ease;
}

.terms-section a:hover {
    color: #0066cc;
    border-bottom-color: #0066cc;
}

/* Improved spacing for readability */
.terms-content > .terms-section + .terms-section {
    margin-top: 56px;
    padding-top: 56px;
    border-top: 1px solid #d2d2d7;
}

/* Better organization for nested content */
.terms-section p + ul {
    margin-top: 12px;
}

.terms-section ul + p {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .terms-container {
        padding: 40px 20px;
    }
    
    .terms-hero {
        margin-bottom: 40px;
        padding-bottom: 24px;
    }
    
    .terms-hero h1 {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .terms-hero p {
        font-size: 0.8125rem;
    }
    
    .legal-notice {
        padding: 16px 20px;
        margin-bottom: 40px;
    }
    
    .legal-notice h3 {
        font-size: 0.9375rem;
    }
    
    .legal-notice p {
        font-size: 0.75rem;
    }
    
    .terms-section {
        margin-bottom: 40px;
    }
    
    .terms-content > .terms-section + .terms-section {
        margin-top: 40px;
        padding-top: 40px;
    }
    
    .terms-section h2 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .terms-section p,
    .terms-section li {
        font-size: 0.75rem;
    }
}

/* Footer */
.site-footer {
    background: #2c3e50;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.site-footer p {
    margin: 0.5rem 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .app-download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

