:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --dark-color: #212529;
    --light-bg: #f8f9fa;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark-color);
}

.navbar-simple {
    background-color: #fff;
    padding: 1.5rem 0;
    position: relative;
}

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

 

.navbar-brand-simple img{
    width: 155px;
}


.share-icon {
    color: #000;
    font-size: 1.2rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.share-icon li {list-style: none; margin:0 15px;}
.share-icon li a {
    color: #000;
    font-size: 1.2rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-icon:hover {
    color: #333;
}

.hero-section {
    background-color: #1a1f3a;
    color: white;
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 84%, 0 100%);
}

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 10px 0;
}

.hero-title span{
    display: block;
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

#cities .section-title {
    margin-bottom: 3rem;
}

.city-card {
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 290px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.city-card-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.city-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.city-card-text {
    background-color: #171347;
    padding: 1.5rem;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 12px;
    opacity: 0.5;
}
.city-name {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    position: relative;
    z-index: 2;
    text-align: center;
}

.city-card-text .city-name {
    font-size: 2rem;
    font-weight: 700;
}

.city-location {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin: 0.25rem 0 0 0;
    text-align: center;
}

.city-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.content-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.content-section .section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #152c5b;
    margin-bottom: 20px !important;
}

.text-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,123,255,.4);
}

@media (max-width: 768px) {

    .city-card {
         
        margin-bottom: 0rem; 
    }

    .navbar-brand-simple {
        font-size: 1.5rem;
    }
    
    .hero-section {
        padding: 100px 0 80px;
        clip-path: polygon(0 0, 100% 0, 100% 97%, 0 100%);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Footer Styles */
.footer-simple {
    background-color: #1a1f3a;
    color: #fff;
    padding: 3rem 0 2rem;
}

.footer-top,
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.footer-left,
.footer-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-left span,
.footer-right a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-right a:hover {
    color: #fff;
}

.footer-separator {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 1.5rem 0;
}

@media (max-width: 768px) {
    .footer-top,
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-left,
    .footer-right {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Privacy Page Styles */
.privacy-content {
    line-height: 1.8;
    color: #495057;
}

.privacy-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.privacy-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.privacy-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-content ul li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.privacy-content p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.privacy-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.privacy-content a:hover {
    text-decoration: underline;
}

.privacy-content strong {
    font-weight: 600;
    color: var(--dark-color);
}

