:root {
    --primary-color: #1da1f2;
    --secondary-color: #14171a;
    --dark-color: #14171a;
    --light-color: #f5f8fa;
    --success-color: #17bf63;
    --danger-color: #e0245e;
    --warning-color: #ffad1f;
    --info-color: #794bc4;
    --border-color: #e1e8ed;
    --text-color: #14171a;
    --text-light: #657786;
    --bg-color: #ffffff;
    --bg-dark: #f5f8fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* Enhanced Header Styles */
.main-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
    border-bottom: 2px solid #00d4ff;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.03);
}

.site-logo {
    height: 50px;
    width: auto;
    margin-right: 15px;
    filter: drop-shadow(0 2px 5px rgba(0, 212, 255, 0.3));
}

.site-name {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #00d4ff, #6a11cb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin-left: 20px;
    position: relative;
}

.nav-link {
    color: #e6e6e6;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link:hover span {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.login-link {
    color: #4caf50;
}

.logout-link {
    color: #f44336;
}

.admin-link {
    color: #9c27b0;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu {
    display: none;
    background: #16213e;
    padding: 20px;
    position: absolute;
    width: 100%;
    z-index: 999;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    margin-bottom: 15px;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Main Content */
main {
    min-height: calc(100vh - 200px);
    padding: 30px 0;
}

/* Footer Styles */
.main-footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-col p {
    margin-bottom: 15px;
    color: #aab8c2;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #aab8c2;
}

.footer-col ul li a:hover {
    color: #fff;
}

.social-links a {
    display: inline-block;
    margin-right: 15px;
    font-size: 20px;
    color: #aab8c2;
}

.social-links a:hover {
    color: #fff;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aab8c2;
    font-size: 14px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #1991da;
    color: #fff;
    transform: translateY(-2px);
}

.btn-danger {
    background-color: var(--danger-color);
}

.btn-danger:hover {
    background-color: #c81e4e;
}

.btn-success {
    background-color: var(--success-color);
}

.btn-success:hover {
    background-color: #15a955;
}

.btn-sm {
    padding: 5px 10px;
    font-size: 14px;
}

/* Cards */
.card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.card-text {
    color: var(--text-light);
    margin-bottom: 15px;
}

.card-meta {
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    justify-content: space-between;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

/* Single Post */
.single-post {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 30px;
}

.single-post img {
    max-height: 500px;
    width: 100%;
    object-fit: contain;
    margin: 20px 0;
    border-radius: 4px;
}

.post-title {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.post-meta {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.post-meta i {
    margin-right: 5px;
}

.post-content {
    line-height: 1.8;
    margin-bottom: 30px;
}

.post-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

.post-content p {
    margin-bottom: 15px;
}

.post-content h2, 
.post-content h3, 
.post-content h4 {
    margin: 20px 0 15px;
    font-weight: 600;
}

.post-content ul, 
.post-content ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

.post-content li {
    margin-bottom: 5px;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.share-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn i {
    margin-right: 5px;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.share-twitter { background-color: #1DA1F2; }
.share-facebook { background-color: #4267B2; }
.share-whatsapp { background-color: #25D366; }
.share-telegram { background-color: #0088CC; }

/* Time Ago Styling */
.post-time {
    color: #666;
    font-size: 0.9em;
    display: inline-flex;
    align-items: center;
}

.post-time i {
    margin-right: 5px;
    font-size: 0.8em;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Admin Styles */
.admin-header {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 15px 0;
    margin-bottom: 30px;
}

.admin-nav ul {
    display: flex;
    list-style: none;
}

.admin-nav ul li {
    margin-left: 20px;
}

.admin-nav ul li a {
    color: #aab8c2;
    font-weight: 500;
}

.admin-nav ul li a:hover {
    color: #fff;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    text-align: center;
}

.stat-card h3 {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.stat-card p {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.table-responsive {
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.table th, 
.table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.table th {
    background-color: var(--bg-dark);
    font-weight: 600;
}

.table tr:hover {
    background-color: var(--bg-dark);
}

/* Editor Styles */
.editor-toolbar {
    background-color: var(--bg-dark);
    padding: 10px;
    border: 1px solid var(--border-color);
    border-bottom: none;
    border-radius: 4px 4px 0 0;
}

.editor-toolbar button {
    background: none;
    border: none;
    padding: 5px 10px;
    margin-right: 5px;
    cursor: pointer;
    border-radius: 3px;
}

.editor-toolbar button:hover {
    background-color: #e1e8ed;
}

.editor-content {
    border: 1px solid var(--border-color);
    border-radius: 0 0 4px 4px;
    padding: 15px;
    min-height: 200px;
    outline: none;
}

/* Alerts */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* AdSense Responsive Ads */
.ad-container {
    margin: 30px 0;
    text-align: center;
}

.ad-container ins {
    display: block;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .site-name {
        font-size: 1.5rem;
    }
    
    .site-logo {
        height: 40px;
    }
}

@media (max-width: 768px) {
    .logo-container {
        display: flex;
        align-items: center;
        /*flex: 1;  Take up available space */
    }    
    .site-logo {
         display: none;
    }
    .site-name {
        white-space: nowrap; /* Prevent text wrapping */
        overflow: hidden;
        text-overflow: ellipsis; /* Add ... if text is too long */
        max-width: calc(100vw - 100px); /* Leave space for menu button */
        font-size: 1.2rem; /* Adjust font size for mobile */
    }
    .mobile-menu-toggle {
        margin-left: auto; /* Push to the right */
    }    
        
}

@media (max-width: 576px) {
    .site-name {
        height: 35px;
    }
    
    .site-logo {
        display: none;
    }
}











/* Enhanced Footer Styles */
.main-footer {
    background: linear-gradient(135deg, #0f0c29 0%, #1a1a2e 100%);
    color: #fff;
    padding: 60px 0 0;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    margin-bottom: 30px;
}

.footer-logo-container {
    margin-bottom: 20px;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.footer-site-name {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #00d4ff, #6a11cb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-about {
    color: #aab8c2;
    margin-bottom: 25px;
    line-height: 1.7;
}

.footer-title {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, #00d4ff, #6a11cb);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aab8c2;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: #00d4ff;
    transform: translateX(5px);
}

.footer-links i {
    margin-right: 8px;
    font-size: 0.8rem;
    color: #00d4ff;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
}

.twitter { background-color: #1DA1F2; }
.telegram { background-color: #0088cc; }
.discord { background-color: #7289DA; }
.email { background-color: #D44638; }
.youtube { background-color: #FF0000; }

.contact-info {
    color: #aab8c2;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    width: 20px;
    color: #00d4ff;
}

.footer-newsletter h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: #aab8c2;
}

.btn-newsletter {
    background: linear-gradient(to right, #00d4ff, #6a11cb);
    border: none;
    white-space: nowrap;
}

.btn-newsletter:hover {
    background: linear-gradient(to right, #6a11cb, #00d4ff);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #aab8c2;
    font-size: 0.9rem;
}

.footer-payments i {
    color: #aab8c2;
    font-size: 1.5rem;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.footer-payments i:hover {
    color: #00d4ff;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(to right, #00d4ff, #6a11cb);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-payments i {
        margin: 0 8px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}







/* Contact Page Styles */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #00d4ff, #6a11cb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
}

.hero-graphic {
    flex: 1;
    min-width: 300px;
    position: relative;
    height: 300px;
}

.crypto-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(106, 17, 203, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.crypto-animation::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.contact-main {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.contact-form h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 15px;
}

.contact-form h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #00d4ff, #6a11cb);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary-color);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e8ed;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.form-control:focus {
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
    background-color: #fff;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.error-message {
    color: var(--danger-color);
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

.has-error .form-control {
    border-color: var(--danger-color);
}

.has-error .form-control:focus {
    box-shadow: 0 0 0 3px rgba(224, 36, 94, 0.1);
}

.btn-submit {
    background: linear-gradient(to right, #00d4ff, #6a11cb);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.btn-icon {
    margin-left: 10px;
    transition: all 0.3s ease;
}

.btn-submit:hover .btn-icon {
    transform: translateX(5px);
}

.contact-success {
    text-align: center;
    padding: 40px;
}

.success-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

.contact-success h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.contact-success p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    display: grid;
    gap: 20px;
}

.info-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
}

.info-card:nth-child(1) .card-icon {
    background: linear-gradient(135deg, #00d4ff, #0077b6);
}

.info-card:nth-child(2) .card-icon {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
}

.info-card:nth-child(3) .card-icon {
    background: linear-gradient(135deg, #0088cc, #00aced);
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.info-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn-outline {
    border: 2px solid #00d4ff;
    color: #00d4ff;
    background: transparent;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        max-width: 100%;
    }
    
    .hero-graphic {
        height: 200px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .info-card {
        padding: 20px;
    }
}






/* About Page - Minimal */
.about-page {
    padding: 40px 0;
}

.page-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.about-section {
    margin-bottom: 40px;
}

.about-section h2 {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-item {
    background: var(--bg-dark);
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-item h3 i {
    font-size: 1.2rem;
}

.approach-list {
    list-style: none;
    padding-left: 0;
}

.approach-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}

.approach-list li::before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 10px;
}

.cta-section {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: var(--bg-dark);
    border-radius: 8px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .service-list {
        grid-template-columns: 1fr;
    }
}



/* WhatsApp Icon Styling */
.whatsapp-icon {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
}

/* WhatsApp Button Hover Effect */
.btn-outline:hover {
    background-color: rgba(37, 211, 102, 0.1);
    border-color: #25D366;
    color: #25D366;
}








.legal-container {
    line-height: 1.6;
}

.legal-container h1 {
    font-weight: 700;
    color: #2d3748;
}

.legal-container h2 {
    font-weight: 600;
    color: #4a5568;
    margin-top: 1.5rem;
}

.legal-container ul {
    padding-left: 1.5rem;
}

.legal-container li {
    margin-bottom: 0.5rem;
}

.legal-container .card {
    border: none;
    border-radius: 12px;
}

.legal-container .text-muted {
    font-size: 0.9rem;
}