:root {
    --primary: #00ff88;
    --primary-dark: #00cc6a;
    --secondary: #0a0e27;
    --accent: #ff0055;
    --bg-dark: #0a0e27;
    --bg-darker: #050811;
    --text-light: #e0e6ed;
    --text-muted: #8892a6;
    --border: #1a2332;
    --card-bg: #0f1420;
    --success: #00ff88;
    --error: #ff0055;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-darker);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.nav-brand a {
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.brand-jdp {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 2px;
}

.brand-tech {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 3px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:not(.cta-button)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-menu a:not(.cta-button):hover::after,
.nav-menu a:not(.cta-button).active::after {
    width: 100%;
}

.nav-menu a:not(.cta-button):hover,
.nav-menu a:not(.cta-button).active {
    color: var(--primary);
}

.cta-button {
    background: var(--primary);
    color: var(--secondary) !important;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--secondary) 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridScroll 20s linear infinite;
}

@keyframes gridScroll {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.hero-line {
    display: block;
    animation: fadeInUp 0.8s ease-out backwards;
}

.hero-line:nth-child(1) { animation-delay: 0.1s; }
.hero-line:nth-child(2) { animation-delay: 0.2s; }
.hero-line:nth-child(3) { animation-delay: 0.3s; }

.hero-line.accent {
    color: var(--primary);
    background: linear-gradient(90deg, var(--primary), #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    animation: fadeInUp 0.8s 0.4s ease-out backwards;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s 0.5s ease-out backwards;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    font-size: 16px;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--secondary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-2px);
}

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

.btn-full {
    width: 100%;
}

/* Services Preview */
.services-preview {
    padding: 100px 0;
    background: var(--bg-dark);
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.1);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.service-link:hover {
    transform: translateX(5px);
}

/* Expertise Section */
.expertise {
    padding: 100px 0;
    background: var(--secondary);
}

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

.expertise-text h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    margin-bottom: 20px;
}

.expertise-text p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 18px;
}

.expertise-list {
    list-style: none;
    margin-bottom: 40px;
}

.expertise-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: var(--text-light);
}

.expertise-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.expertise-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
}

.stat-card {
    background: var(--card-bg);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-darker), var(--secondary));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(0, 255, 136, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Page Header */
.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--bg-darker), var(--secondary));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.page-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 56px;
    margin-bottom: 20px;
    position: relative;
}

.page-header p {
    font-size: 20px;
    color: var(--text-muted);
    position: relative;
}

/* Service Detail */
.service-detail {
    padding: 80px 0;
}

.service-detail.alternate {
    background: var(--card-bg);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.service-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.service-detail-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 38px;
    margin-bottom: 15px;
}

.lead {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.service-detail-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    margin: 40px 0 20px;
    color: var(--primary);
}

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

.service-features li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features strong {
    color: var(--primary);
}

.service-detail-tools {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.service-detail-tools h4 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 20px;
    color: var(--primary);
}

.tool-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tool-tags span {
    padding: 8px 16px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 5px;
    font-size: 14px;
    color: var(--text-light);
    transition: all 0.3s;
}

.tool-tags span:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
}

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

.footer-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary);
}

.footer-section h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.footer-section p {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary);
}

.footer-cta {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary);
    color: var(--secondary);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 10px;
}

.footer-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 14px;
}

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

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

.contact-info h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    margin-bottom: 20px;
}

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

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-item h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary);
}

.contact-item p {
    color: var(--text-muted);
}

.contact-cta-box {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--border);
    margin-top: 30px;
}

.contact-cta-box h3 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 10px;
    color: var(--primary);
}

.contact-form-container {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--border);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-light);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-darker);
    border: 1px solid var(--border);
    border-radius: 5px;
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

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

/* Flash Messages */
.flash-messages {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 2000;
    max-width: 400px;
}

.flash {
    padding: 20px 25px;
    border-radius: 5px;
    margin-bottom: 15px;
    animation: slideIn 0.3s ease-out;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.flash.success {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
}

.flash.error {
    background: rgba(255, 0, 85, 0.1);
    border: 1px solid var(--accent);
    color: var(--accent);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--card-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--bg-darker);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.faq-item h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary);
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Tutoring Styles */
.tutoring-intro {
    padding: 80px 0;
}

.tutoring-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.tutoring-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 38px;
    margin-bottom: 20px;
}

.highlight-box {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--border);
    position: sticky;
    top: 120px;
}

.highlight-box h3 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 20px;
    color: var(--primary);
}

.highlight-box ul {
    list-style: none;
}

.highlight-box ul li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.highlight-box ul li:last-child {
    border-bottom: none;
}

.tutoring-topics {
    padding: 80px 0;
    background: var(--card-bg);
}

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

.topic-card {
    background: var(--bg-darker);
    padding: 35px;
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.topic-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.topic-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.topic-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    margin-bottom: 15px;
}

.topic-list {
    list-style: none;
    margin-top: 20px;
}

.topic-list li {
    padding: 8px 0;
    color: var(--text-muted);
    padding-left: 20px;
    position: relative;
}

.topic-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* About Styles */
.about-story {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.about-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 38px;
    margin-bottom: 20px;
}

.philosophy-list {
    list-style: none;
    margin-top: 25px;
}

.philosophy-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}

.philosophy-list li:last-child {
    border-bottom: none;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.highlight-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.highlight-card h3 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 15px;
    color: var(--primary);
}

.highlight-card ul {
    list-style: none;
}

.highlight-card ul li {
    padding: 8px 0;
    color: var(--text-muted);
}

/* Timeline */
.experience-timeline {
    padding: 80px 0;
    background: var(--card-bg);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
}

.timeline-marker {
    position: absolute;
    left: 12px;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 4px var(--card-bg);
}

.timeline-content h3 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 10px;
    color: var(--primary);
}

/* Approach Section */
.approach-section {
    padding: 80px 0;
}

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

.approach-card {
    text-align: center;
    padding: 35px 25px;
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.approach-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.approach-icon {
    font-size: 52px;
    margin-bottom: 20px;
}

.approach-card h3 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 15px;
    color: var(--primary);
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: var(--card-bg);
}

.values-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
}

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

.value-item {
    background: var(--bg-darker);
    padding: 35px;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.value-item h3 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 15px;
    color: var(--primary);
}

/* Tutoring Format */
.tutoring-format {
    padding: 80px 0;
}

.format-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.format-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-darker);
    border-radius: 10px;
    border: 1px solid var(--border);
}

.format-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--secondary);
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.format-card h3 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 15px;
}

/* Info Section */
.tutoring-info {
    padding: 80px 0;
    background: var(--card-bg);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-box {
    background: var(--bg-darker);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.info-box h3 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 20px;
    color: var(--primary);
}

.info-list {
    list-style: none;
}

.info-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.info-list li:last-child {
    border-bottom: none;
}

/* Testimonials */
.testimonial-section {
    padding: 80px 0;
}

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

.testimonial-card {
    background: var(--card-bg);
    padding: 35px;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.testimonial-quote {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-light);
}

.testimonial-author {
    color: var(--text-muted);
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--secondary);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }
    
    .nav-menu.active {
        max-height: 400px;
        border-top: 1px solid var(--border);
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .expertise-content,
    .service-detail-grid,
    .tutoring-grid,
    .about-grid,
    .contact-grid,
    .info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-detail-tools {
        position: static;
    }
    
    .section-title {
        font-size: 32px;
    }
}
