:root {
    --primary-color: #00c853;
    --secondary-color: #333;
    --dark-bg: #1a1a1a;
    --light-bg: #f5f5f7;
    --white: #fff;
    --border-color: #e0e0e0;
    --facebook-color: #3b5998;
    --twitter-color: #1da1f2;
    --instagram-color: #e1306c;
    --youtube-color: #ff0000;
    --pinterest-color: #bd081c;
    --telegram-color: #0088cc;
    --whatsapp-color: #25d366;
}

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

body {
    font-family: Arial, sans-serif;
    background-color: var(--light-bg);
    line-height: 1.6;
}

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

/* Header Styles */
.site-header {
    background-color: var(--dark-bg);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo img {
    height: 60px;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin: 0 15px;
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.user-profile img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

/* Search and Social Section */
.search-social {
    background-color: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.search-box {
    display: flex;
    width: 50%;
}

.search-box input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-right: none;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    font-size: 16px;
}

.search-box .search-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0 20px;
    cursor: pointer;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
}

.social-icon.facebook {
    background-color: var(--facebook-color);
}

.social-icon.twitter {
    background-color: var(--twitter-color);
}

.social-icon.instagram {
    background-color: var(--instagram-color);
}

.social-icon.youtube {
    background-color: var(--youtube-color);
}

.social-icon.pinterest {
    background-color: var(--pinterest-color);
}

.social-icon.telegram {
    background-color: var(--telegram-color);
}

/* Main Content */
.main-content {
    background-color: var(--white);
    margin-top: 20px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.breadcrumb {
    margin-bottom: 20px;
    color: #777;
}

.breadcrumb a {
    color: #777;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* App Details */
.app-details {
    display: flex;
    flex-direction: column;
}

.app-header {
    display: flex;
    margin-bottom: 20px;
}

.app-icon {
    flex: 0 0 200px;
    margin-right: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.app-icon img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.app-icon img:hover {
    transform: scale(1.02);
}

.icon-download-btn {
    width: 100%;
    max-width: 200px;
    text-align: center;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(2, 119, 189, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.icon-download-btn i {
    margin-right: 15px !important;
    padding-right: 5px;
    font-size: 14px;
    display: inline-block;
}

.icon-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(2, 119, 189, 0.4);
}

.icon-download-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.7s ease;
}

.icon-download-btn:hover::after {
    left: 100%;
}

.app-info {
    flex: 1;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.app-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-color);
}

.app-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--secondary-color);
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.app-version {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    top: -5px;
    box-shadow: 0 2px 5px rgba(0,200,83,0.3);
}

.app-categories {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.category {
    padding: 7px 18px;
    border-radius: 6px;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
}

.category:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.category::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.7);
    margin-right: 8px;
}

.category.games {
    background-color: var(--primary-color);
}

.category.card {
    background-color: #4caf50;
}

.app-description {
    margin-top: 25px;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.05rem;
    color: #444;
    padding: 15px;
    background-color: rgba(255,255,255,0.7);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    position: relative;
}

.app-description::before {
    content: '"';
    position: absolute;
    top: 0;
    left: 10px;
    font-size: 2.5rem;
    color: rgba(0,200,83,0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

.app-meta {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 30px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.meta-item {
    position: relative;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.meta-item:hover {
    background-color: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

.meta-item h3 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.meta-item p {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.share-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: relative;
    margin-bottom: 30px;
    margin-top: 10px;
}

.share-buttons::before {
    content: 'Share';
    position: absolute;
    top: -10px;
    left: 15px;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgba(0,200,83,0.3);
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 120px;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
}

.share-btn i {
    margin-right: 10px;
}

.share-btn.facebook {
    background-color: var(--facebook-color);
}

.share-btn.twitter {
    background-color: var(--twitter-color);
}

.share-btn.pinterest {
    background-color: var(--pinterest-color);
}

.share-btn.telegram {
    background-color: var(--telegram-color);
}

.share-btn.whatsapp {
    background-color: var(--whatsapp-color);
}

/* Download Section */
.download-section {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0277bd 0%, #01579b 100%);
    color: var(--white);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    margin-right: 20px;
    box-shadow: 0 3px 10px rgba(2, 119, 189, 0.25);
    transition: all 0.3s ease;
    text-align: center;
    min-width: 140px;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(2, 119, 189, 0.35);
}

.download-btn i {
    margin-right: 15px !important;
    padding-right: 8px;
    display: inline-block;
}

.rating {
    display: flex;
    flex-direction: column;
    margin-right: 20px;
}

.stars {
    color: #ffc107;
    display: flex;
    align-items: center;
}

.rating-value {
    margin-left: 5px;
    font-weight: bold;
}

.rating-max {
    color: #777;
}

.votes {
    font-size: 14px;
    color: #777;
}

.report-btn {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    color: #777;
    cursor: pointer;
    font-size: 14px;
}

.report-btn i {
    margin-right: 5px;
}

/* Description Section */
.app-description h2 {
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
    margin-bottom: 15px;
}

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

.description-content p {
    margin-bottom: 20px;
    color: #555;
}

.description-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

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

.app-screenshot {
    margin: 30px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.app-screenshot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,200,83,0.1) 0%, rgba(0,0,0,0) 50%);
    z-index: 1;
    pointer-events: none;
}

.app-screenshot img {
    max-width: 30%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    display: block;
    margin: 0 auto;
    border: 1px solid rgba(0,0,0,0.05);
}

.app-screenshot:hover img {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.image-caption {
    text-align: center;
    color: var(--primary-color);
    font-style: italic;
    margin-top: 15px;
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(0,200,83,0.05);
    border-radius: 20px;
}

/* Table of Contents */
.table-of-contents {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
    position: relative;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.table-of-contents:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.table-of-contents::before {
    content: "📑";
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 1.8rem;
    opacity: 0.2;
}

.table-of-contents h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: #222;
    position: relative;
    display: inline-block;
}

.table-of-contents h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.table-of-contents ul {
    list-style-type: none;
    padding-left: 0;
}

.table-of-contents ul ul {
    padding-left: 25px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.table-of-contents li {
    margin-bottom: 10px;
    line-height: 1.5;
    position: relative;
}

.table-of-contents li a {
    color: #444;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 3px 0;
    display: inline-block;
}

.table-of-contents li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.table-of-contents > ul > li > a {
    font-weight: 500;
}

.table-of-contents ul ul li::before {
    content: '•';
    position: absolute;
    left: -15px;
    color: var(--primary-color);
}

/* Content Sections */
.content-section {
    margin: 40px 0;
    padding: 25px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.content-section h3 {
    font-size: 1.6rem;
    color: #222;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
    position: relative;
    display: inline-block;
}

.content-section h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40%;
    height: 2px;
    background-color: #4caf50;
}

.content-section p {
    margin-bottom: 18px;
    line-height: 1.8;
    color: #444;
    font-size: 1.05rem;
}

.content-section ul {
    padding-left: 20px;
    margin-bottom: 20px;
    list-style-type: none;
}

.content-section ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 35px;
}

.content-section ul li::before {
  content: '✓';
    position: absolute;
    left: 8px; /* Change from 0 to 8px */
    color: var(--primary-color);
    font-weight: bold;
}

.feature-subsection {
    margin: 30px 0;
    padding: 20px 20px 20px 25px;
    border-left: 4px solid var(--primary-color);
    background-color: #f9f9f9;
    border-radius: 0 8px 8px 0;
    transition: transform 0.2s ease;
}

.feature-subsection:hover {
    transform: translateX(5px);
}

.feature-subsection h4 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 15px;
    position: relative;
}

.content-section ol {
    padding-left: 25px;
    margin-bottom: 20px;
    counter-reset: item;
    list-style-type: none;
}

.content-section ol li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 15px;
    counter-increment: item;
}

.content-section ol li::before {
    content: counter(item);
    position: absolute;
    left: -25px;
    width: 28px;
    height: 28px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Related Apps Section */
.related-apps {
    background-color: var(--white);
    margin: 40px 0;
    padding: 30px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.related-apps h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
    position: relative;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.app-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.app-image {
    position: relative;
    overflow: hidden;
    padding-bottom: 100%; /* 1:1 Aspect Ratio */
}

.app-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-title {
    font-weight: 600;
    margin: 15px 15px 10px;
    line-height: 1.3;
    height: 2.6em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 1rem;
}

.app-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-tag {
    background-color: #2196f3;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.app-tag.mod {
    background-color: #f44336;
}

.app-version {
    color: #666;
    font-size: 0.9rem;
}

.app-publisher, .app-date {
    margin: 0 15px 5px;
    color: #777;
    font-size: 0.85rem;
}

.app-rating {
    margin: 0 15px 15px;
    color: #ffc107;
    font-size: 0.9rem;
}

.card-download-btn {
    margin: 0 15px 15px;
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-download-btn i {
    margin-right: 10px;
    padding-right: 2px;
    display: inline-block;
}

.card-download-btn:hover {
    background-color: #025a8a;
    transform: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-social .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-box {
        width: 100%;
    }
    
    .app-header {
        flex-direction: column;
    }
    
    .app-icon {
        margin-bottom: 25px;
        margin-right: 0;
        max-width: 350px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .app-icon .download-btn {
        width: 100%;
        max-width: 280px;
        padding: 16px 24px;
        font-size: 18px;
        font-weight: 700;
        border-radius: 12px;
        margin: 0 auto;
        text-align: center;
        box-shadow: 0 4px 15px rgba(2, 119, 189, 0.3);
        transition: all 0.3s ease;
        background: linear-gradient(135deg, #0277bd 0%, #01579b 100%);
    }
    
    .app-icon .download-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(2, 119, 189, 0.4);
    }
    
    .app-icon .download-btn i {
        font-size: 16px;
        margin-right: 12px !important;
    }
    
    .app-meta {
        display: flex;
        overflow-x: auto;
        padding: 15px;
        gap: 15px;
        margin-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    
    .app-meta::-webkit-scrollbar {
        height: 4px;
    }
    
    .app-meta::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
    }
    
    .app-meta::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 2px;
    }
    
    .meta-item {
        padding: 8px;
        font-size: 0.9rem;
        min-width: 120px;
        flex-shrink: 0;
        text-align: center;
    }
    
    .meta-item h3 {
        font-size: 0.75rem;
        margin-bottom: 3px;
    }
    
    .meta-item p {
        font-size: 1rem;
    }
    
    .app-info {
        padding: 15px;
    }
    
    .download-section {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .icon-download-btn {
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .content-section {
        padding: 20px 15px;
    }
    
    .feature-subsection {
        padding: 15px 15px 15px 20px;
    }
    
    .table-of-contents {
        padding: 20px 15px;
    }
    
    .table-of-contents::before {
        display: none;
    }
    
    .content-section ol li::before {
        width: 24px;
        height: 24px;
        left: -20px;
    }
    
    .apps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .app-image {
        padding-bottom: 60%; /* Reduced from 100% to 60% (40% smaller) */
    }
    
    .app-screenshot img {
        max-width: 80% !important;
    }
}

@media (max-width: 480px) {
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .app-icon {
        max-width: 320px;
        margin: 0 auto 20px auto;
        text-align: center;
    }
    
    .app-meta {
        display: flex;
        overflow-x: auto;
        padding: 12px;
        gap: 12px;
        margin-bottom: 15px;
        -webkit-overflow-scrolling: touch;
    }
    
    .meta-item {
        padding: 10px;
        min-width: 100px;
        flex-shrink: 0;
        text-align: center;
    }
    
    .meta-item h3 {
        font-size: 0.7rem;
        margin-bottom: 2px;
    }
    
    .meta-item p {
        font-size: 0.95rem;
    }
    
    .app-title {
        font-size: 2.5rem;
    }
    
    .app-description {
        padding: 12px;
    }
    
    .share-buttons {
        padding: 12px;
        flex-direction: column;
    }
    
    .content-section h3 {
        font-size: 1.4rem;
    }
    
    .feature-subsection h4 {
        font-size: 1.15rem;
    }
    
    .content-section p {
        font-size: 1rem;
    }
    
    .content-section ul li {
        padding-left: 20px;
    }
    
    .table-of-contents ul ul {
        padding-left: 15px;
    }
    
    .apps-grid {
        grid-template-columns: 1fr;
    }
    
    .app-image {
        padding-bottom: 60%; /* Reduced from 100% to 60% (40% smaller) */
    }
    
    .card-title {
        height: auto;
        line-height: 1.3;
    }
    
    .app-screenshot img {
        max-width: 90% !important;
    }
}

/* About Us Page Styles */
.about-us-section {
    padding: 20px 0;
}

.page-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-image {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.team-member {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

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

.member-image {
    overflow: hidden;
    position: relative;
    padding-top: 80%; /* Reduced from 100% to 80% for smaller images */
}

.member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* This ensures the image covers the area without distortion */
    object-position: center top; /* Focus on the top part of the image (face) */
    display: block;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.team-member h3 {
    font-size: 1.2rem;
    margin: 20px 15px 5px;
    color: #333;
    font-weight: 700;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0 15px 10px;
    font-size: 0.9rem;
    display: inline-block;
    padding: 3px 12px;
    background-color: rgba(0,200,83,0.1);
    border-radius: 20px;
}

.member-bio {
    margin: 10px 15px 20px;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    padding: 0 5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.8rem;
}

.feature-item h3 {
    margin-bottom: 15px;
    color: #333;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-method i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-method p {
    color: #555;
    margin: 0;
}

.contact-method a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-method a:hover {
    text-decoration: underline;
}

.social-links {
    text-align: center;
    margin-top: 30px;
}

.social-links p {
    margin-bottom: 15px;
    color: #555;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.social-btn.facebook {
    background-color: var(--facebook-color);
}

.social-btn.twitter {
    background-color: var(--twitter-color);
}

.social-btn.instagram {
    background-color: var(--instagram-color);
}

.social-btn.youtube {
    background-color: var(--youtube-color);
}

/* Responsive styles for About Us page */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 2rem;
    }
}

/* Contact Us Page Styles */
.contact-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Team member styling for contact page - matching about us structure */
.contact-content .team-member {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-content .team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.contact-content .member-image {
    overflow: hidden;
    position: relative;
    padding-top: 100%; /* Square aspect ratio matching about us */
    max-height: 250px; /* Limit maximum height */
}

.contact-content .member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center; /* Center the image for better cropping */
    display: block;
    transition: transform 0.5s ease;
}

.contact-content .team-member:hover .member-image img {
    transform: scale(1.05);
}

.contact-content .team-member h3 {
    font-size: 1.2rem;
    margin: 20px 15px 5px;
    color: #333;
    font-weight: 700;
}

.contact-content .team-member p {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0 15px 20px;
    font-size: 0.9rem;
    display: inline-block;
    padding: 3px 12px;
    background-color: rgba(0,200,83,0.1);
    border-radius: 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.contact-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.contact-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.contact-card h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.4rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 5px;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
    transition: color 0.2s;
}

.contact-link:hover {
    color: #00a040;
    text-decoration: underline;
}

.contact-form {
    max-width: 800px;
    margin: 30px auto 0;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #444;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.submit-btn:hover {
    background-color: #00a040;
    transform: translateY(-2px);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.faq-container {
    margin-top: 30px;
}

.faq-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.faq-item h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.faq-item p {
    color: #666;
    margin: 0;
}

.social-connect-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.social-connect-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 15px;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-connect-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.social-connect-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.social-connect-card span {
    font-weight: 600;
}

.social-connect-card.facebook {
    background-color: var(--facebook-color);
}

.social-connect-card.twitter {
    background-color: var(--twitter-color);
}

.social-connect-card.instagram {
    background-color: var(--instagram-color);
}

.social-connect-card.youtube {
    background-color: var(--youtube-color);
}

/* DMCA Page Styles */
.dmca-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.dmca-requirements ol {
    padding-left: 20px;
    margin-top: 20px;
}

.dmca-requirements li {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #444;
}

.agent-info {
    background-color: #f9f9f9;
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.agent-info p {
    margin-bottom: 10px;
}

.agent-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.agent-info a:hover {
    text-decoration: underline;
}

.counter-notice ol {
    padding-left: 20px;
    margin: 20px 0;
}

.counter-notice li {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #444;
}

.dmca-form {
    max-width: 800px;
    margin: 30px auto 0;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

/* Responsive styles for Contact and DMCA pages */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .social-connect-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .social-connect-grid {
        grid-template-columns: 1fr;
    }
}

/* Custom style for download link */
.download-link {
    color: #2e7d32;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.download-link:hover {
    color: #1b5e20;
}

/* Highlight box styling */
.highlight-box {
    background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 100%);
    border-left: 4px solid #4caf50;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.highlight-box h3 {
    color: #2e7d32;
    margin-bottom: 15px;
}

/* FAQ styling */
.faq-item {
    margin-bottom: 25px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 3px solid #4caf50;
}

.faq-item h4 {
    color: #2e7d32;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-item p {
    margin: 0;
    line-height: 1.6;
}

/* Footer Styles */
.site-footer {
    background-color: #1a1a1a;
    padding: 20px 0;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo {
    flex: 1;
}

.footer-logo img {
    height: 30px;
    opacity: 0.9;
}

.copyright {
    flex: 1;
    text-align: center;
}

.copyright p {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

.contact-us {
    flex: 1;
    text-align: right;
}

.contact-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contact-btn:hover {
    background-color: #00a040;
    transform: translateY(-2px);
}

/* Fixed Back to Top Button */
.back-to-top-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top-fixed.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top-fixed a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #00a040);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size: 1.1rem;
}

.back-to-top-fixed a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #00a040, var(--primary-color));
}

/* Contact Popup Styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    backdrop-filter: blur(5px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: popupSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

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

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: linear-gradient(135deg, var(--primary-color), #00a040);
    color: white;
    position: relative;
}

.popup-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #25D366, #0088cc, #25D366);
}

.popup-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: white;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg) scale(1.1);
}

.popup-body {
    padding: 30px;
    text-align: center;
}

.popup-body p {
    margin: 0 0 25px 0;
    color: #555;
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.contact-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 25px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    min-width: 120px;
    position: relative;
    overflow: hidden;
}

.contact-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.contact-link:hover::before {
    left: 100%;
}

.contact-link.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.contact-link.telegram {
    background: linear-gradient(135deg, #0088cc, #005f8a);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.3);
}

.contact-link:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.contact-link.whatsapp:hover {
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.contact-link.telegram:hover {
    box-shadow: 0 15px 40px rgba(0, 136, 204, 0.5);
}

.contact-link i {
    font-size: 2rem;
    margin-bottom: 12px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.contact-link span {
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-logo {
        order: 1;
        text-align: center;
    }
    
    .copyright {
        order: 2;
        text-align: center;
    }
    
    .contact-us {
        order: 3;
        text-align: center;
    }
    
    .back-to-top-fixed {
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top-fixed a {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .popup-content {
        width: 95%;
        margin: 20px;
    }
    
    .popup-header {
        padding: 20px 25px;
    }
    
    .popup-header h3 {
        font-size: 1.2rem;
    }
    
    .popup-body {
        padding: 25px 20px;
    }
    
    .contact-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .contact-link {
        width: 200px;
        padding: 18px 20px;
    }
    
    .contact-link i {
        font-size: 1.8rem;
    }
}
/* Brand Logo Cards Styling */
.brand-logos-section {
    margin-top: 40px;
    padding: 30px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
}

.brand-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.brand-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #007bff;
}

.brand-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    overflow: hidden;
}

.brand-logo img {
    max-width: 70px;
    max-height: 70px;
    object-fit: contain;
}

.brand-card h4 {
    color: #333;
    margin: 15px 0 10px;
    font-size: 18px;
    font-weight: 600;
}

.brand-card p {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .brand-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .brand-card {
        padding: 20px;
    }
    
    .brand-logo {
        width: 60px;
        height: 60px;
    }
    
    .brand-logo img {
        max-width: 50px;
        max-height: 50px;
    }
}
/* Brand Name Styling */
.brand-name {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 20px;
}

.brand-name h1 {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(45deg, var(--primary-color), #00e676);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 200, 83, 0.3);
}

.brand-name .tagline {
    color: #888;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: -2px;
}

/* Update header container for better spacing */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .brand-name h1 {
        font-size: 22px;
        letter-spacing: 1px;
    }
    
    .brand-name .tagline {
        font-size: 10px;
    }
    
    .header-container {
        gap: 10px;
    }
    
    .logo img {
        height: 45px;
    }
}

@media (max-width: 480px) {
    .brand-name {
        margin-left: 10px;
    }
    
    .brand-name h1 {
        font-size: 18px;
    }
    
    .brand-name .tagline {
        display: none;
    }
}

/* Button Icon Spacing Fix - Override */
.download-btn i, 
.icon-download-btn i, 
.card-download-btn i, 
.share-btn i {
    margin-right: 15px !important;
    padding-right: 5px !important;
    display: inline-block !important;
}

.contact-btn i {
    margin-right: 10px !important;
}

.contact-link i {
    margin-bottom: 12px !important;
}

/* Force proper display for all buttons with icons */
.download-btn, 
.icon-download-btn, 
.card-download-btn, 
.share-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Fix for FontAwesome icons */
.fa, .fas, .fab, .far {
    margin-right: 10px !important;
}

/* Exception for social icons in the header */
.social-icon .fa, 
.social-icon .fas, 
.social-icon .fab, 
.social-icon .far {
    margin-right: 0 !important;
}
@media (max-width: 768px) {
    .header-container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 10px;
        position: relative;
    }
    
    .logo {
        order: 1;
    }
    
    .brand-name {
        order: 2;
        align-items: center;
        margin-left: 0;
    }
    
    .main-nav {
        order: 3;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .main-nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0;
        padding: 0;
    }
    
    .main-nav li {
        margin: 5px 10px;
    }
    
    .brand-name h1 {
        font-size: 22px;
        letter-spacing: 1px;
    }
    
    .brand-name .tagline {
        font-size: 10px;
    }
    
    .logo img {
        height: 45px;
    }
}

@media (max-width: 480px) {
    .main-nav ul {
        justify-content: center;
    }
    
    .main-nav li {
        margin: 5px 8px;
    }
    
    .main-nav a {
        font-size: 14px;
    }
    
    .brand-name h1 {
        font-size: 18px;
    }
    
    .brand-name .tagline {
        display: none;
    }
    
    .app-icon {
        max-width: 300px;
        padding: 0 15px;
    }
    
    .app-icon .download-btn {
        max-width: 260px;
        padding: 14px 20px;
        font-size: 16px;
        border-radius: 10px;
    }
    
    .app-icon .download-btn i {
        font-size: 14px;
        margin-right: 10px !important;
    }
}