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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    line-height: 1.6;
    color: #333;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Consultation Header */
.consultation-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 15px 20px;
    color: white;
}

.consultation-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    max-width: 1100px;
    margin: 0 auto;
}

.consultation-content i {
    font-size: 24px;
    color: white;
}

.consultation-text h3 {
    font-size: 16px;
    margin-bottom: 4px;
    font-weight: 600;
}

.consultation-text p {
    font-size: 13px;
    opacity: 0.9;
}

.book-now-btn {
    background: white;
    color: #667eea;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Main Content */
.main-content {
    padding: 30px 20px;
}

/* Profile */
.profile {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.profile img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Title */
h1 {
    text-align: center;
    font-weight: 700;
    color: #2d3748;
    font-size: 28px;
    margin-bottom: 15px;
}

/* Bio */
.bio {
    text-align: center;
    color: #4a5568;
    font-size: 16px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Social Links */
.social-links {
    margin-bottom: 50px;
}

.social-links h2 {
    text-align: center;
    color: #2d3748;
    margin-bottom: 25px;
    font-size: 22px;
}

.links-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 2px solid;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.social-link i {
    font-size: 22px;
    width: 40px;
    margin-right: 15px;
}

.social-link span {
    font-size: 16px;
    font-weight: 500;
}

/* Platform Colors */
.instagram { border-color: #E1306C; color: #E1306C; }
.instagram:hover { background: #E1306C; color: white; }

.youtube { border-color: #FF0000; color: #FF0000; }
.youtube:hover { background: #FF0000; color: white; }

.twitter { border-color: #000000; color: #000000; }
.twitter:hover { background: #000000; color: white; }

.linkedin { border-color: #0077B5; color: #0077B5; }
.linkedin:hover { background: #0077B5; color: white; }

.github { border-color: #333333; color: #333333; }
.github:hover { background: #333333; color: white; }

.discord { border-color: #5865F2; color: #5865F2; }
.discord:hover { background: #5865F2; color: white; }
.tiktok { border-color: #69C9D0; color: #69C9D0; background: rgba(255, 255, 255, 0.1); }
.tiktok:hover { background: linear-gradient(45deg, #FF0050, #00F2EA, #69C9D0); color: white; border-color: transparent; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(105, 201, 208, 0.3); }

/* Services Section */
.services-section {
    background: #f8fafc;
    padding: 40px 20px;
    margin: 40px -20px;
    border-radius: 15px;
}

.services-section h2 {
    text-align: center;
    color: #2d3748;
    font-size: 24px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.services-subtitle {
    text-align: center;
    color: #718096;
    font-size: 15px;
    margin-bottom: 35px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 30px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 25px 20px;
    position: relative;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.service-card.featured {
    border-color: #4299e1;
    transform: translateY(-5px);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #4299e1;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #4299e1;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.service-card h3 {
    color: #2d3748;
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    color: #4a5568;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.service-features i {
    color: #48bb78;
    font-size: 14px;
    margin-top: 2px;
}

.service-price {
    text-align: center;
    margin-bottom: 25px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #2d3748;
    display: block;
}

.duration {
    color: #718096;
    font-size: 14px;
}

.service-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: #4299e1;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.service-btn:hover {
    background: #3182ce;
    transform: translateY(-2px);
}

.services-note {
    background: white;
    border-radius: 12px;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    border-left: 4px solid #4299e1;
}

.services-note p {
    color: #4a5568;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
}

.services-note i {
    color: #4299e1;
    margin-top: 2px;
}

/* Resources Section */
.resources-section {
    padding: 40px 0;
}

.resources-section h2 {
    text-align: center;
    color: #2d3748;
    font-size: 24px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.resources-subtitle {
    text-align: center;
    color: #718096;
    font-size: 15px;
    margin-bottom: 20px;
}

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

.resource-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    position: relative;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.resource-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    color: white;
}

.free-badge {
    background: linear-gradient(135deg, #48bb78, #38a169);
}

.paid-badge {
    background: linear-gradient(135deg, #ed8936, #dd6b20);
}

.resource-icon {
    width: 60px;
    height: 60px;
    background: #4299e1;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 24px;
}

.resource-card.paid .resource-icon {
    background: linear-gradient(135deg, #ed8936, #dd6b20);
}

.resource-content h3 {
    color: #2d3748;
    font-size: 20px;
    margin-bottom: 15px;
}

.resource-description {
    color: #4a5568;
    font-size: 15px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.resource-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}

.resource-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #718096;
    font-size: 14px;
}

.resource-meta i {
    color: #4299e1;
}

.price-tag {
    background: #fef3c7;
    color: #92400e;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
}

.resource-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.free-btn {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    text-decoration: none;
}

.free-btn:hover {
    background: linear-gradient(135deg, #38a169, #2f855a);
    transform: translateY(-2px);
}

.paid-btn {
    background: linear-gradient(135deg, #ed8936, #dd6b20);
    color: white;
}

.paid-btn:hover {
    background: linear-gradient(135deg, #dd6b20, #c05621);
    transform: translateY(-2px);
}

.resources-instructions {
    background: #f8fafc;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 40px;
    border-left: 4px solid #4299e1;
}

.resources-instructions h4 {
    color: #2d3748;
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.resources-instructions p {
    color: #4a5568;
    margin-bottom: 15px;
    font-size: 15px;
}

.resources-instructions ol {
    color: #4a5568;
    padding-left: 20px;
    font-size: 15px;
}

.resources-instructions li {
    margin-bottom: 8px;
}

.resources-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: #4299e1;
    transform: translateY(-5px);
}

.info-card i {
    font-size: 40px;
    color: #4299e1;
    margin-bottom: 20px;
}

.info-card h4 {
    color: #2d3748;
    font-size: 18px;
    margin-bottom: 15px;
}

.info-card p {
    color: #718096;
    font-size: 15px;
}

/* Footer */
.site-footer {
    background: #1a202c;
    color: white;
    padding: 40px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.footer-logo {
    text-align: center;
}

.footer-logo-circle {
    width: 60px;
    height: 60px;
    background: #4299e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
}

.footer-logo h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.footer-logo p {
    color: #a0aec0;
    font-size: 15px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.footer-column h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    color: #cbd5e0;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-column a:hover {
    color: #4299e1;
}

.footer-payment h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
}

.payment-methods {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
}

.payment-method i {
    font-size: 28px;
    color: #0070ba;
}

.payment-method span {
    font-size: 16px;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.copyright p {
    color: #a0aec0;
    font-size: 14px;
    margin-bottom: 5px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: #cbd5e0;
    font-size: 20px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #4299e1;
}

/* Purchase Modal */
.purchase-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: #718096;
    cursor: pointer;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.close-modal:hover {
    color: #e53e3e;
}

.modal-header {
    background: linear-gradient(135deg, #ed8936, #dd6b20);
    padding: 30px;
    text-align: center;
    color: white;
    border-radius: 20px 20px 0 0;
}

.modal-header i {
    font-size: 48px;
    margin-bottom: 15px;
}

.modal-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.modal-subtitle {
    font-size: 15px;
    opacity: 0.9;
}

.modal-body {
    padding: 30px;
}

.resource-preview {
    margin-bottom: 30px;
}

.resource-preview h4 {
    color: #2d3748;
    font-size: 22px;
    margin-bottom: 15px;
}

.preview-description {
    color: #4a5568;
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.price-display {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    padding: 15px;
    background: #f7fafc;
    border-radius: 12px;
}

.price-label {
    color: #4a5568;
    font-size: 16px;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #ed8936;
}

.whats-included {
    background: #f0fff4;
    border-radius: 12px;
    padding: 20px;
}

.whats-included h5 {
    color: #2d3748;
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whats-included ul {
    list-style: none;
    padding-left: 0;
}

.whats-included li {
    color: #4a5568;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
}

.whats-included li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
}

.payment-method-selection {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.payment-method-selection .payment-method {
    padding: 15px 30px;
    background: #4299e1;
    border-radius: 12px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    font-weight: 600;
}

.paypal-info {
    text-align: center;
}

.paypal-info p {
    color: #4a5568;
    font-size: 15px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pay-btn {
    width: 100%;
    padding: 18px;
    background: #0070ba;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.pay-btn:hover {
    background: #005ea6;
    transform: translateY(-2px);
}

.payment-security {
    color: #718096;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    body {
        background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    }
    
    .container {
        background: #2d3748;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }
    
    h1, .social-links h2, .services-section h2, .resources-section h2 {
        color: #e2e8f0;
    }
    
    .bio, .resources-intro p, .resources-instructions p, .resources-instructions ol {
        color: #a0aec0;
    }
    
    .social-link {
        background: #374151;
        color: #e2e8f0;
    }
    
    .services-section {
        background: #374151;
    }
    
    .service-card, .resource-card, .info-card {
        background: #374151;
        border-color: #4a5568;
    }
    
    .service-card h3, .resource-content h3, .info-card h4, .whats-included h5 {
        color: #e2e8f0;
    }
    
    .service-features li, .resource-description, .info-card p {
        color: #cbd5e0;
    }
    
    .services-note, .resources-instructions {
        background: #4a5568;
    }
    
    .services-note p, .resources-instructions p {
        color: #e2e8f0;
    }
    
    .modal-content {
        background: #2d3748;
    }
    
    .resource-preview h4 {
        color: #e2e8f0;
    }
    
    .preview-description {
        color: #a0aec0;
    }
    
    .price-display {
        background: #374151;
    }
    
    .price-label {
        color: #e2e8f0;
    }
    
    .whats-included {
        background: #374151;
    }
    
    .whats-included li {
        color: #cbd5e0;
    }
    
    .paypal-info p {
        color: #a0aec0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .consultation-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .book-now-btn {
        align-self: center;
    }
    
    .profile img {
        width: 100px;
        height: 100px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    .bio {
        font-size: 15px;
        padding: 0 10px;
    }
    
    .social-links h2, .services-section h2, .resources-section h2 {
        font-size: 20px;
    }
    
    .links-container {
        grid-template-columns: 1fr;
    }
    
    .services-container, .resources-container {
        grid-template-columns: 1fr;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .resources-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .modal-content {
        margin: 10px;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 20px 15px;
    }
    
    .consultation-text h3 {
        font-size: 14px;
    }
    
    .consultation-text p {
        font-size: 12px;
    }
    
    .book-now-btn {
        padding: 6px 15px;
        font-size: 13px;
    }
    
    h1 {
        font-size: 22px;
    }
    
    .social-link {
        padding: 12px 15px;
    }
    
    .social-link i {
        font-size: 20px;
        width: 30px;
    }
    
    .social-link span {
        font-size: 15px;
    }
    
    .services-section, .resources-section {
        padding: 30px 15px;
        margin: 30px -15px;
    }
    
    .service-card, .resource-card, .info-card {
        padding: 20px 15px;
    }
    
    .price {
        font-size: 28px;
    }
    
    .service-btn, .resource-btn, .pay-btn {
        padding: 12px;
        font-size: 15px;
    }
}