/* canım etli ekmek çekiyor */
:root {
    --primary-color: #aa8f76;
    --primary-light: #c5b09d;
    --primary-alt: #e9e2db;
    --primary-dark: #8a725c;
    --secondary-color: #f8f5f2;
    --dark-color: #2c2c2c;
    --light-color: #ffffff;
    --text-color: #5a5a5a;
    --light-text: #999999;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --whatsapp-color: #25d366;
    --whatsapp-hover: #128c7e;
    --whatsapp-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--dark-color);
    font-weight: 600;
    line-height: 1.2;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.salotak{
  color: #aa8f76 !important;
}

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

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


/* Versiyon 5 - Üst Çizgi + Box Shadow Efekti */
.navbar-v5 {
    border-bottom: 1px solid rgba(170, 143, 118, 0.15);
}

.navbar-v5 .navbar-brand {
    color: var(--main-color) !important;
    font-weight: 700;
    font-size: 1.3rem;
}

.navbar-v5 .nav-link {
    color: #555 !important;
    padding: 0.6rem 1.3rem !important;
    margin: 0 0.2rem;
    border-radius: 8px;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-v5 .nav-link:after {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 3px;
    background: var(--main-color);
    border-radius: 0 0 3px 3px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-v5 .nav-link:hover {
    background-color: rgba(170, 143, 118, 0.06);
    color: var(--main-color) !important;
    box-shadow: 0 3px 10px rgba(170, 143, 118, 0.15);
}

.navbar-v5 .nav-link:hover:after,
.navbar-v5 .nav-link.active:after {
    transform: scaleX(1);
}

.navbar-v5 .nav-link.active {
    background-color: rgba(170, 143, 118, 0.08);
    color: var(--main-color) !important;
}


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

.changing-word {
    font-weight: bold;
    color: var(--primary-color);
    min-width: 140px;
    text-align: center;
}

.fade-in {
    animation: fadeIn .4s ease;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: var(--whatsapp-color);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: var(--whatsapp-shadow);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    background-color: var(--whatsapp-hover);
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-float i {
    transition: transform 0.3s ease;
}

.whatsapp-float:hover i {
    transform: scale(1.1);
}

/* WhatsApp Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1001;
}

.whatsapp-tooltip:after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(0, 0, 0, 0.8);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* WhatsApp Notification Badge */
.whatsapp-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background-color: #ff4757;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

/* WhatsApp Chat Widget (Opsiyonel) */
.whatsapp-widget {
    position: fixed;
    bottom: 120px;
    right: 40px;
    width: 320px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 999;
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-widget.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.whatsapp-header {
    background-color: var(--whatsapp-color);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-header i {
    font-size: 24px;
}

.whatsapp-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.whatsapp-header p {
    margin: 0;
    font-size: 12px;
    opacity: 0.9;
}

.whatsapp-body {
    padding: 20px;
    max-height: 300px;
    overflow-y: auto;
}

.whatsapp-message {
    background-color: #f0f0f0;
    border-radius: 10px;
    padding: 12px 15px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.whatsapp-message.bot {
    background-color: #e1ffc7;
    align-self: flex-start;
}

.whatsapp-message.user {
    background-color: #d9fdd3;
    align-self: flex-end;
}

.whatsapp-input {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

.whatsapp-input input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.whatsapp-input input:focus {
    border-color: var(--whatsapp-color);
}

.whatsapp-input button {
    background-color: var(--whatsapp-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.whatsapp-input button:hover {
    background-color: var(--whatsapp-hover);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 30px;
        right: 20px;
        font-size: 28px;
    }

    .whatsapp-widget {
        width: 90%;
        right: 5%;
        bottom: 110px;
    }

    .whatsapp-float:hover .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 576px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 25px;
        right: 15px;
        font-size: 24px;
    }

    .whatsapp-notification {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }
}

/* Print Media Query */
@media print {
    .whatsapp-float,
    .whatsapp-widget {
        display: none !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .whatsapp-widget {
        background-color: #2d3436;
        color: white;
    }

    .whatsapp-input input {
        background-color: #3c4245;
        border-color: #4a5154;
        color: white;
    }

    .whatsapp-message {
        background-color: #3c4245;
        color: white;
    }

    .whatsapp-message.bot {
        background-color: #2a5c3d;
    }

    .whatsapp-message.user {
        background-color: #1e7e34;
    }
}

.goog-te-banner-frame.skiptranslate {
    display: none !important;
}
.goog-logo-link,
.goog-te-gadget span {
    display: none !important;
}
#google_translate_element {
    background: #fff;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,.15);
}
.translate-wrapper {
    z-index: 9999;
}

.btn {
    border-radius: var(--border-radius);
    padding: 0.875rem 2rem;
    font-weight: 500;
    font-size: 1rem;
    border: none;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--light-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(170, 143, 118, 0.2);
}

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

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(170, 143, 118, 0.2);
}

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

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

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.brand-wrapper {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 12px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
    line-height: 1;
}

.brand-tagline {
    font-size: 0.8rem;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.nav-number {
    font-size: 0.7rem;
    color: var(--primary-color);
    margin-right: 5px;
    font-weight: 600;
}

.navbar-nav .nav-link:before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 1rem;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover:before,
.navbar-nav .nav-link.active:before {
    width: calc(100% - 2rem);
}

.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.nav-item {
    margin: 0.5rem !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28170, 143, 118, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}








.karpuz {
    color: var(--primary-color);
    background: rgba(170, 143, 118, 0.05);
    --transition: all 0.3s ease;
}


/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--light-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-subtitle {
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.hero-title {
    font-size: 4.5rem;
    color: var(--light-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2rem 0;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.stat-text {
    color: var(--dark-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Services Section */
.services-section {
    background-color: var(--light-color);
    padding: 6rem 0;
}

.service-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-img {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 100%);
}

.service-content {
    padding: 2rem;
    position: relative;
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-size: 1.8rem;
    margin: -60px auto 1.5rem;
    position: relative;
    z-index: 1;
}

.service-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.service-description {
    color: var(--text-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.service-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Philosophy Section */
.philosophy-section {
    background-color: var(--secondary-color);
    padding: 6rem 0;
}

.philosophy-img {
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    box-shadow: var(--box-shadow);
}

.philosophy-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.philosophy-points {
    margin-top: 2rem;
}

.point-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.point-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: rgba(170, 143, 118, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 1.5rem;
}

.point-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.point-content p {
    color: var(--text-color);
    margin-bottom: 0;
}

/* Packages Section */
.packages-section {
    background-color: var(--light-color);
    padding: 6rem 0;
}

.package-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.package-card.featured {
    border: 2px solid var(--primary-color);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -10px;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 20px;
    z-index: 1;
}

.package-header {
    background-color: rgba(170, 143, 118, 0.05);
    padding: 2.5rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.package-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.package-price {
    font-size: 3.5rem;
    color: var(--primary-color);
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.package-price sup {
    font-size: 1.5rem;
    top: -1.5rem;
    position: relative;
}

.package-price span {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 400;
    display: block;
}

.package-body {
    padding: 2.5rem 2rem;
}

.package-features {
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    margin-right: 1rem;
    width: 20px;
}

.package-features .fa-check {
    color: var(--primary-color);
}

.package-features .fa-times {
    color: #ccc;
}

.package-features .not-included {
    color: var(--light-text);
}

.package-save {
    text-align: center;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: rgba(255, 255, 255, 0.7);
}

.footer-brand .logo-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
}

.footer-brand .brand-name {
    color: var(--light-color);
    font-size: 2rem;
}

.footer-brand .brand-tagline {
    color: var(--primary-light);
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.8;
}

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

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    transition: var(--transition);
}

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

.footer-title {
    color: var(--light-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact .contact-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.footer-contact .contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: 5px;
}

.footer-contact .contact-item h5 {
    color: var(--light-color);
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-family: 'Inter', sans-serif;
}

.footer-contact .contact-item p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-policies a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-left: 1.5rem;
    transition: var(--transition);
}

.footer-policies a:hover {
    color: var(--primary-color);
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.8rem;
    }

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

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.2rem;
    }

    .hero-text {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .hero-stats {
        position: relative;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-section {
        background-attachment: scroll;
    }

    .hero-content {
        text-align: center;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .hero-buttons .btn.me-3 {
        margin-right: 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .navbar-nav .btn {
        margin-top: 1rem;
    }

    .featured-badge {
        right: 20px;
        top: 10px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .package-card {
        margin-bottom: 2rem;
    }

    .footer-policies a {
        display: block;
        margin: 0.5rem 0;
        text-align: left;
    }
}
