/* PhantomGate - Digital Wellness Website Styles */

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

body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

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

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

.btn-primary {
    background: #6366f1;
    color: white;
}

.btn-primary:hover {
    background: #4f46e5;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #6b7280;
    color: white;
}

.btn-secondary:hover {
    background: #4b5563;
}

.btn-outline {
    background: transparent;
    color: #6366f1;
    border: 2px solid #6366f1;
}

.btn-outline:hover {
    background: #6366f1;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: #6366f1;
    text-decoration: none;
}

.logo-img {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #6366f1;
}

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

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

/* Main Content */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
}

.highlight {
    color: #fbbf24;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.icon-item {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.icon-item i {
    font-size: 40px;
    margin-bottom: 10px;
    display: block;
}

/* Page Header */
.page-header {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.breadcrumb {
    margin-top: 20px;
    color: rgba(255,255,255,0.8);
}

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

.breadcrumb i {
    margin: 0 10px;
}

/* Sections */
section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #333;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Cards */
.features-grid,
.services-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card,
.service-card,
.blog-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover,
.service-card:hover,
.blog-card:hover {
    transform: translateY(-5px);
}

.feature-icon,
.service-icon,
.blog-icon {
    width: 60px;
    height: 60px;
    background: #6366f1;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-card h3,
.service-card h3,
.blog-card h3 {
    margin-bottom: 15px;
    color: #333;
}

.service-link,
.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
    margin-top: 15px;
}

.service-link:hover,
.blog-link:hover {
    color: #4f46e5;
}

/* Forms */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6366f1;
}

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

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.4;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 60px 0 20px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-main {
    grid-column: span 1;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: white;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #6366f1;
}

.footer-section h5 {
    margin-bottom: 10px;
    color: white;
    font-size: 16px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    line-height: 1.6;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #6366f1;
    transform: translateX(5px);
}

.footer-links a i {
    width: 16px;
    font-size: 14px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 36px;
    height: 36px;
    margin-right: 12px;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.footer-description {
    color: #d1d5db;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 16px;
}

.footer-contact h4 {
    margin-bottom: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #d1d5db;
    font-size: 15px;
}

.contact-item i {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 4px;
    color: #6366f1;
    font-size: 12px;
    flex-shrink: 0;
}

.contact-item a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #6366f1;
}

/* Newsletter Signup */
.newsletter-signup {
    margin-top: 30px;
    padding: 20px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.newsletter-signup p {
    color: #d1d5db;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-newsletter-form {
    margin: 0;
}

.newsletter-input-group {
    display: flex;
    gap: 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.newsletter-input-group input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    outline: none;
    font-size: 14px;
    background: white;
    color: #333;
}

.newsletter-input-group input::placeholder {
    color: #999;
}

.newsletter-btn {
    background: #6366f1;
    color: white;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 14px;
}

.newsletter-btn:hover {
    background: #4f46e5;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.footer-legal .legal-links {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.footer-legal .legal-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.footer-legal .legal-links a:hover {
    color: #6366f1;
}

.footer-legal .legal-links a i {
    font-size: 12px;
}

.footer-copyright {
    text-align: center;
    grid-column: 2;
}

.footer-copyright p {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
    line-height: 1.5;
}

.footer-copyright strong {
    color: white;
}

.footer-copyright small {
    font-size: 12px;
    opacity: 0.8;
}

.footer-certifications {
    text-align: right;
}

.cert-badges {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(99, 102, 241, 0.2);
    color: #6366f1;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.cert-badge i {
    font-size: 10px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #6366f1;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

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

.back-to-top:hover {
    background: #4f46e5;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-main {
        grid-column: span 1;
    }
    
    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .footer-legal .legal-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-copyright {
        text-align: center;
        grid-column: 1;
    }
    
    .footer-certifications {
        text-align: center;
    }
    
    .cert-badges {
        justify-content: center;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .newsletter-input-group input {
        border-radius: 6px 6px 0 0;
    }
    
    .newsletter-btn {
        border-radius: 0 0 6px 6px;
        padding: 14px 16px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-section h4 {
        font-size: 16px;
    }
    
    .footer-logo-text {
        font-size: 20px;
    }
    
    .footer-description {
        font-size: 14px;
    }
    
    .contact-item {
        font-size: 14px;
    }
    
    .footer-legal .legal-links {
        gap: 15px;
    }
    
    .footer-legal .legal-links a {
        font-size: 13px;
    }
    
    .footer-copyright p {
        font-size: 13px;
    }
    
    .cert-badges {
        gap: 8px;
    }
    
    .cert-badge {
        font-size: 10px;
        padding: 3px 6px;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: white;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin: 0;
    margin-right: 20px;
}

.cookie-content a {
    color: #fbbf24;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* Thank You Page */
.thank-you-section {
    padding: 80px 0;
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    font-size: 80px;
    color: #10b981;
    margin-bottom: 30px;
}

.thank-you-lead {
    font-size: 20px;
    margin-bottom: 40px;
    color: #666;
}

.next-steps {
    margin: 60px 0;
}

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

.step-item {
    text-align: center;
    padding: 30px 20px;
}

.step-icon {
    font-size: 40px;
    color: #6366f1;
    margin-bottom: 20px;
}

/* Blog Specific */
.blog-post {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.post-meta {
    display: flex;
    gap: 20px;
    margin: 15px 0;
    font-size: 14px;
    color: #666;
}

.post-tags {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.tag {
    background: #e5e7eb;
    color: #666;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.post-content-full {
    display: none;
    margin-top: 20px;
}

.read-more-btn {
    background: #6366f1;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 15px;
}

.read-more-btn:hover {
    background: #4f46e5;
}

/* Additional Styles for Services Page */
.service-detail {
    padding: 80px 0;
}

.service-detail.alt {
    background: #f8f9fa;
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #6366f1;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.service-lead {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #666;
}

.feature-list i {
    color: #10b981;
    width: 20px;
}

.process-steps {
    margin-top: 20px;
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #6366f1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-info h4 {
    margin-bottom: 8px;
    color: #333;
}

.step-info p {
    color: #666;
    margin: 0;
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #6366f1;
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: #6366f1;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #fbbf24;
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.price {
    margin: 20px 0;
}

.currency {
    font-size: 18px;
    vertical-align: top;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: #6366f1;
}

.period {
    font-size: 16px;
    color: #666;
}

.pricing-features {
    margin: 20px 0;
    text-align: left;
}

.pricing-features p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #666;
}

.pricing-features i {
    color: #10b981;
    width: 16px;
}

/* About Page Styles */
.mission-section {
    background: white;
    padding: 80px 0;
}

.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-stats {
    display: grid;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 8px;
}

.stat-label {
    color: #666;
    font-weight: 500;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.member-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
}

.member-role {
    color: #6366f1;
    font-weight: 500;
    margin-bottom: 15px;
}

.member-bio {
    color: #666;
    margin-bottom: 20px;
}

.member-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.member-specialties span {
    background: #e5e7eb;
    color: #666;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-methods {
    margin: 40px 0;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: #6366f1;
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.method-info h3 {
    margin-bottom: 5px;
    color: #333;
}

.method-info p {
    margin-bottom: 5px;
    color: #666;
}

.method-note {
    font-size: 14px;
    color: #999;
}

.benefits-list {
    list-style: none;
    margin: 20px 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #666;
}

.benefits-list i {
    color: #10b981;
    width: 20px;
}

/* FAQ Styles */
.faq-grid {
    display: grid;
    gap: 20px;
    margin-top: 40px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.stars {
    color: #fbbf24;
    margin-bottom: 15px;
}

.testimonial-author {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h4 {
    margin-bottom: 2px;
    color: #333;
}

.author-info span {
    font-size: 14px;
    color: #666;
}

/* Legal Pages */
.legal-content {
    padding: 60px 0;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.document-info {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.update-date,
.effective-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    margin-bottom: 10px;
}

.document-content h2 {
    color: #333;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #6366f1;
}

.document-content h3 {
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.document-content h4 {
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
}

.document-content ul,
.document-content ol {
    margin: 15px 0;
    padding-left: 20px;
}

.document-content li {
    margin-bottom: 8px;
    color: #666;
}

.definitions {
    margin: 20px 0;
}

.definition-item {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.definition-item h3 {
    margin-bottom: 8px;
    color: #6366f1;
}

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

/* Newsletter */
.newsletter-section {
    background: #6366f1;
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
    text-align: center;
    color: white;
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-input {
    display: flex;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
}

.newsletter-note {
    font-size: 14px;
    margin-top: 10px;
    opacity: 0.8;
}

/* Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: #6366f1;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.article-count {
    display: inline-block;
    background: #e5e7eb;
    color: #666;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-top: 15px;
}

/* Additional Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .features-grid,
    .services-grid,
    .blog-grid,
    .values-grid,
    .team-grid,
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-legal .legal-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-copyright {
        text-align: center;
        grid-column: 1;
    }
    
    .footer-certifications {
        text-align: center;
    }
    
    .cert-badges {
        justify-content: center;
    }
    /* PhantomGate - Digital Wellness Website Styles */

/* ===== CSS RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a2e;
    background-color: #fafbfc;
    font-size: 16px;
    overflow-x: hidden;
}

/* ===== VARIABLES ===== */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #a5b4fc;
    --secondary-color: #f59e0b;
    --accent-color: #10b981;
    --success-color: #059669;
    --warning-color: #d97706;
    --error-color: #dc2626;
    
    --text-primary: #1a1a2e;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    
    --bg-primary: #fafbfc;
    --bg-secondary: #f8fafc;
    --bg-card: #ffffff;
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    
    --border-color: #e5e7eb;
    --border-light: #f3f4f6;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

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

.lead {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
}