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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: #0a0a0a url('../../images/bg.jpg?v=2025') no-repeat calc(50% + 14px) center fixed;
    background-size: 120%;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #b0b0b0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #07A3FF 0%, #0099cc 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(7, 163, 255, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00b8e6 0%, #0088b3 100%);
    box-shadow: 0 6px 20px rgba(7, 163, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #07A3FF;
    border: 2px solid #07A3FF;
}

.btn-secondary:hover {
    background: rgba(7, 163, 255, 0.1);
    color: #07A3FF;
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(7, 163, 255, 0.1);
    z-index: 1000;
    padding: 0;
}

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

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 90px;
    width: auto;
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #07A3FF;
}

.nav-link.active {
    color: #07A3FF;
    font-weight: 600;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #07A3FF;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
    transform: none !important;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(7, 163, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(7, 163, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-badge {
    margin-bottom: 1.5rem;
}

.badge-text {
    background: rgba(7, 163, 255, 0.1);
    color: #07A3FF;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(7, 163, 255, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.highlight {
    color: #07A3FF;
}

.hero-description {
    font-size: 1.125rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #07A3FF;
}

.stat-label {
    font-size: 0.875rem;
    color: #666;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.tech-item {
    background: rgba(7, 163, 255, 0.1);
    border: 1px solid rgba(7, 163, 255, 0.2);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: #07A3FF;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(7, 163, 255, 0.2);
    border-color: rgba(7, 163, 255, 0.4);
    box-shadow: 0 4px 12px rgba(7, 163, 255, 0.3);
}

/* Tech Modal */
.tech-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.tech-modal-content {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    margin: 5% auto;
    padding: 0;
    border: 1px solid rgba(7, 163, 255, 0.3);
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.tech-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(7, 163, 255, 0.2);
    background: rgba(7, 163, 255, 0.05);
}

.tech-modal-header h3 {
    color: #07A3FF;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.tech-modal-close {
    background: none;
    border: none;
    color: #888;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.tech-modal-close:hover {
    color: #07A3FF;
}

.tech-modal-body {
    padding: 2rem;
}

.tech-modal-body h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tech-modal-body p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tech-modal-body ul {
    color: #b0b0b0;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.tech-modal-body li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.tech-benefits {
    background: rgba(7, 163, 255, 0.1);
    border: 1px solid rgba(7, 163, 255, 0.2);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.tech-benefits h5 {
    color: #07A3FF;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.tech-benefits ul {
    margin: 0;
    padding-left: 1rem;
}

.tech-benefits li {
    color: #d0d0d0;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

/* Section Styles */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

/* Portfolio Section - FIXED VERSION */
.portfolio {
    padding: 80px 0;
    background: #0f0f0f;
}

.portfolio-table-container {
    width: 100%;
    display: block;
    margin-bottom: 3rem;
}

.portfolio-table {
    border-collapse: separate;
    border-spacing: 8px;
    table-layout: fixed;
    width: 100%;
    margin: 0 auto;
}

.portfolio-table td {
    width: 120px !important;
    height: 120px !important;
    padding: 0 !important;
    margin: 0;
    border: none;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    background: rgba(255, 255, 255, 0.02);
    vertical-align: top;
}

.portfolio-img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1;
    object-fit: cover !important;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(7, 163, 255, 0.1);
    display: block;
    border-radius: 6px;
}

.portfolio-img:hover {
    transform: scale(1.1);
    border-color: rgba(7, 163, 255, 0.5);
    box-shadow: 0 4px 12px rgba(7, 163, 255, 0.3);
    z-index: 10;
    position: relative;
}

/* Modal - Lightbox Style */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    overflow: auto;
    padding: 20px;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
}

#modalImage {
    display: block;
    max-width: 100%;
    max-height: 80vh;
    margin: auto;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    animation: zoom 0.3s;
    border-radius: 8px;
}

@keyframes zoom {
    from {transform: scale(0.1)}
    to {transform: scale(1)}
}

.close {
    color: #fff;
    position: absolute;
    top: 15px;
    right: 35px;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 2001;
}

.close:hover {
    color: #07A3FF;
}

#modalCaption {
    color: #ccc;
    padding: 10px 0;
    text-align: center;
    margin-top: 10px;
    font-size: 1.1rem;
}

/* Responsive Portfolio */
@media (max-width: 768px) {
    .portfolio-table {
        border-spacing: 6px;
    }
    .portfolio-table td {
        width: 90px !important;
        height: 90px !important;
    }
    .portfolio-img {
        width: 90px !important;
        height: 90px !important;
    }
}

@media (max-width: 480px) {
    .portfolio-table {
        border-spacing: 4px;
    }
    .portfolio-table td {
        width: 70px !important;
        height: 70px !important;
    }
    .portfolio-img {
        width: 70px !important;
        height: 70px !important;
    }
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #0a0a0a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(7, 163, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: rgba(7, 163, 255, 0.3);
    background: rgba(255, 255, 255, 0.03);
}

.service-icon {
    color: #07A3FF;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-description {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: #b0b0b0;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #07A3FF;
    font-weight: bold;
}

.services-cta {
    text-align: center;
}





/* About Section */
.about {
    padding: 80px 0;
    background: #0f0f0f;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-description p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    text-align: center;
    flex: 1;
}

.stat-card .stat-number {
    font-size: 1.5rem;
    color: #07A3FF;
    font-weight: 700;
}

.stat-card .stat-label {
    font-size: 0.875rem;
    color: #666;
}

.expertise-grid {
    margin-bottom: 2rem;
}

.expertise-item {
    margin-bottom: 1.5rem;
}

.expertise-item h4 {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.expertise-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.expertise-fill {
    height: 100%;
    background: linear-gradient(90deg, #07A3FF 0%, #0099cc 100%);
    border-radius: 4px;
    transition: width 1s ease;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.value-icon {
    color: #07A3FF;
    flex-shrink: 0;
}

.value-content h4 {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.value-content p {
    font-size: 0.875rem;
    color: #b0b0b0;
    margin-bottom: 0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #0a0a0a;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(7, 163, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.contact-icon {
    color: #07A3FF;
    margin-bottom: 1rem;
}

.contact-details h4 {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-details p {
    font-size: 0.875rem;
    color: #b0b0b0;
    margin-bottom: 0.25rem;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(7, 163, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(7, 163, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #07A3FF;
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Dropdown styling */
.form-group select {
    background: #1a1a1a;
    color: #ffffff;
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 8px 12px;
}

.form-group select option:hover {
    background: #07A3FF;
    color: #ffffff;
}

.form-group select option:checked {
    background: #07A3FF;
    color: #ffffff;
}

/* Form Messages */
.form-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 16px;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Messenger Container */
.messenger-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(7, 163, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    width: 100%;
}

.messenger-info h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.messenger-info p {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.messenger-benefits {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
    display: inline-block;
}

.messenger-benefits li {
    color: #07A3FF;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.messenger-cta {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(7, 163, 255, 0.05);
    border: 1px solid rgba(7, 163, 255, 0.2);
    border-radius: 8px;
}

.messenger-cta p {
    color: #07A3FF;
    font-size: 1.1rem;
    margin: 0;
}

/* Facebook Messenger Icon Button Styling */
.messenger-icon-container {
    margin-top: 2rem;
    text-align: center;
}

.messenger-icon-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.messenger-icon-button:hover {
    transform: translateY(-3px);
    text-decoration: none;
}

.messenger-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0084ff 0%, #0073e6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 132, 255, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.messenger-icon-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0073e6 0%, #0066cc 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.messenger-icon-button:hover .messenger-icon-circle::before {
    opacity: 1;
}

.messenger-svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.messenger-text {
    color: #07A3FF;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 8px;
    transition: color 0.3s ease;
}

.messenger-icon-button:hover .messenger-text {
    color: #0084ff;
}

/* Responsive adjustments for messenger */
@media (max-width: 768px) {
    .messenger-container {
        padding: 1.5rem;
    }
    
    .messenger-info h3 {
        font-size: 1.25rem;
    }
    
    .messenger-benefits {
        text-align: center;
    }
    
    .messenger-benefits li {
        text-align: left;
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .messenger-icon-circle {
        width: 70px;
        height: 70px;
    }
    
    .messenger-svg {
        width: 28px;
        height: 28px;
    }
    
    .messenger-text {
        font-size: 0.9rem;
    }
}

/* Footer */
.footer {
    background: #050505;
    border-top: 1px solid rgba(7, 163, 255, 0.1);
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-description {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(7, 163, 255, 0.1);
    border: 1px solid rgba(7, 163, 255, 0.2);
    border-radius: 8px;
    color: #07A3FF;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(7, 163, 255, 0.2);
    border-color: rgba(7, 163, 255, 0.4);
}

.footer-title {
    font-size: 1.125rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #07A3FF;
}

.footer-contact p {
    font-size: 0.875rem;
    color: #b0b0b0;
    margin-bottom: 0.5rem;
}

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

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #07A3FF;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-list {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.875rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Policy Modal Styles */
.policy-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.policy-modal-content {
    background: #0a0a0a;
    border: 1px solid rgba(7, 163, 255, 0.2);
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.policy-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(7, 163, 255, 0.1);
    background: rgba(7, 163, 255, 0.05);
    border-radius: 12px 12px 0 0;
}

.policy-modal-header h3 {
    color: #ffffff;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.policy-modal-close {
    background: none;
    border: none;
    color: #07A3FF;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.policy-modal-close:hover {
    background: rgba(7, 163, 255, 0.1);
    color: #ffffff;
}

.policy-modal-body {
    padding: 2rem;
    color: #e0e0e0;
    line-height: 1.6;
}

.policy-modal-body h4 {
    color: #07A3FF;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

.policy-modal-body h5 {
    color: #ffffff;
    font-size: 1.25rem;
    margin: 2rem 0 1rem 0;
}

.policy-modal-body h6 {
    color: #07A3FF;
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem 0;
}

.policy-modal-body p {
    color: #b0b0b0;
    margin-bottom: 1rem;
}

.policy-modal-body ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.policy-modal-body li {
    color: #b0b0b0;
    margin-bottom: 0.5rem;
}

.policy-modal-body strong {
    color: #ffffff;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .policy-modal {
        padding: 10px;
    }
    
    .policy-modal-content {
        max-height: 95vh;
    }
    
    .policy-modal-header {
        padding: 1rem 1.5rem;
    }
    
    .policy-modal-header h3 {
        font-size: 1.25rem;
    }
    
    .policy-modal-body {
        padding: 1.5rem;
    }
    
    .policy-modal-body h4 {
        font-size: 1.25rem;
    }
    
    .policy-modal-body h5 {
        font-size: 1.1rem;
    }
} 