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

:root {
    --bg-dark: #0F172A;
    --bg-darker: #020617;
    --bg-card: #1E293B;
    --code-lime: #84CC16;
    --code-blue: #3B82F6;
    --code-blue-light: #60A5FA;
    --text-primary: #F1F5F9;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    --border-color: #334155;
    --border-hover: #475569;
    --shadow-glow: 0 0 20px rgba(132, 204, 22, 0.3);
    --shadow-glow-blue: 0 0 20px rgba(59, 130, 246, 0.3);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 600;
}

code, pre {
    font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    border-top: 1px solid var(--border-color);
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: var(--code-blue);
    text-decoration: underline;
}

.cookie-btn {
    background: var(--code-blue);
    color: var(--bg-dark);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.cookie-btn:hover {
    background: var(--code-blue-light);
    box-shadow: var(--shadow-glow-blue);
}

/* Header */
.header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--code-lime);
    text-decoration: none;
    letter-spacing: -0.5px;
    font-family: 'JetBrains Mono', monospace;
    transition: text-shadow 0.3s ease;
}

.logo:hover {
    text-shadow: 0 0 10px var(--code-lime);
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 15px;
}

.nav-link:hover {
    color: var(--code-lime);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--code-lime);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
    box-shadow: 0 0 8px var(--code-lime);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: var(--code-lime);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--code-lime);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 0.15; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(2, 6, 23, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 100px 0;
}

.hero-text {
    z-index: 1;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.btn {
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--code-lime);
    color: var(--bg-dark);
    border-color: var(--code-lime);
}

.btn-primary:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--code-blue);
    border-color: var(--code-blue);
}

.btn-secondary:hover {
    background: var(--code-blue);
    color: var(--bg-dark);
    box-shadow: var(--shadow-glow-blue);
    transform: translateY(-2px);
}

/* Hero Code Block */
.hero-code {
    position: relative;
}

.code-block {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.code-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.1;
    overflow: hidden;
}

.code-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.code-block:hover {
    border-color: var(--code-lime);
    box-shadow: var(--shadow-glow);
}

.code-header {
    background: var(--bg-darker);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
}

.code-dot:nth-child(1) {
    background: #EF4444;
}

.code-dot:nth-child(2) {
    background: #F59E0B;
}

.code-dot:nth-child(3) {
    background: #10B981;
}

.code-filename {
    margin-left: auto;
    color: var(--text-secondary);
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
}

.code-content {
    position: relative;
    padding: 24px;
    background: var(--bg-card);
    overflow-x: auto;
    min-height: 200px;
    -webkit-overflow-scrolling: touch;
    z-index: 1;
}

.code-content pre {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-primary);
    white-space: pre;
    word-wrap: normal;
    overflow-x: auto;
}

.code-content code {
    display: block;
}

.code-keyword {
    color: var(--code-blue);
}

.code-variable {
    color: var(--code-lime);
}

.code-function {
    color: #A78BFA;
}

.code-string {
    color: #FBBF24;
}

.code-number {
    color: #34D399;
}

.code-property {
    color: var(--text-secondary);
}

.code-comment {
    color: var(--text-muted);
    font-style: italic;
}

.code-cursor {
    display: inline-block;
    width: 3px;
    height: 20px;
    background: var(--code-lime);
    animation: blink 1s infinite;
    margin-left: 4px;
    vertical-align: middle;
    box-shadow: 0 0 8px var(--code-lime);
}

@keyframes blink {
    0%, 50% { 
        opacity: 1; 
        box-shadow: 0 0 8px var(--code-lime);
    }
    51%, 100% { 
        opacity: 0.3; 
        box-shadow: 0 0 4px var(--code-lime);
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Training Section */
.training-section {
    background: var(--bg-darker);
}

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

.training-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.training-card:hover {
    border-color: var(--code-lime);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.card-image {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.training-card:hover .card-image img {
    transform: scale(1.05);
}

.training-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.training-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.card-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 25px;
}

.card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--code-lime);
    font-weight: bold;
    font-family: 'JetBrains Mono', monospace;
}

/* API Endpoints Section */
.endpoints-section {
    background: var(--bg-dark);
}

.endpoints-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.endpoint-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.endpoint-item:hover {
    border-color: var(--code-blue);
}

.endpoint-item.active {
    border-color: var(--code-lime);
    box-shadow: 0 0 20px rgba(132, 204, 22, 0.2);
}

.endpoint-header {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.endpoint-header:hover {
    background: var(--bg-darker);
}

.endpoint-method {
    padding: 6px 12px;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    min-width: 60px;
    text-align: center;
}

.endpoint-method.get {
    background: var(--code-blue);
    color: var(--bg-dark);
}

.endpoint-method.post {
    background: var(--code-lime);
    color: var(--bg-dark);
}

.endpoint-path {
    flex: 1;
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-primary);
    font-size: 15px;
}

.endpoint-toggle {
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.endpoint-item.active .endpoint-toggle {
    transform: rotate(180deg);
}

.endpoint-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 20px;
}

.endpoint-item.active .endpoint-content {
    max-height: 2000px;
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.endpoint-description {
    margin-bottom: 20px;
}

.endpoint-description p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.endpoint-params,
.endpoint-example,
.endpoint-response {
    margin-bottom: 25px;
}

.endpoint-params h4,
.endpoint-example h4,
.endpoint-response h4 {
    color: var(--code-lime);
    font-size: 16px;
    margin-bottom: 12px;
    font-family: 'JetBrains Mono', monospace;
}

.code-block-small,
.code-block-interactive {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    margin-top: 12px;
    transition: all 0.3s ease;
}

.code-block-interactive:hover {
    border-color: var(--code-lime);
    box-shadow: 0 0 15px rgba(132, 204, 22, 0.2);
}

.code-header-small {
    background: var(--bg-dark);
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.code-lang {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.copy-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 14px;
    position: relative;
}

.copy-btn:hover {
    background: var(--bg-card);
    color: var(--code-lime);
}

.copy-btn.copied {
    color: var(--code-lime);
}

.copy-btn.copied::after {
    content: 'Copied!';
    position: absolute;
    top: -30px;
    right: 0;
    background: var(--bg-card);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    border: 1px solid var(--code-lime);
}

.code-block-small pre,
.code-block-interactive pre {
    padding: 16px;
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
    overflow-x: auto;
    white-space: pre;
    word-wrap: normal;
    -webkit-overflow-scrolling: touch;
}

.code-block-small code,
.code-block-interactive code {
    display: block;
}

/* Courses Section */
.courses-section {
    background: var(--bg-darker);
}

.courses-slider {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
}

.course-slide {
    min-width: 100%;
    display: none;
}

.course-slide.active {
    display: block;
}

.course-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.course-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.5s ease;
}

.course-slide.active .course-image {
    transform: scale(1);
}

.course-slide .course-image {
    transform: scale(0.95);
}

.course-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.course-info p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.course-meta {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.course-meta span {
    padding: 8px 16px;
    background: var(--code-blue);
    color: var(--bg-dark);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--code-blue);
    background: var(--bg-card);
    color: var(--code-blue);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--code-blue);
    color: var(--bg-dark);
    box-shadow: var(--shadow-glow-blue);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--code-blue);
    box-shadow: 0 0 10px var(--code-blue);
}

/* Integration Section */
.integration-section {
    background: var(--bg-dark);
}

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

.integration-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.integration-text > p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 17px;
}

.integration-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--code-lime);
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.integration-visual img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.integration-visual:hover img {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

/* Workshops Section */
.workshops-section {
    background: var(--bg-darker);
}

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

.workshop-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--code-blue);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--code-blue);
    transition: all 0.3s ease;
    overflow: hidden;
}

.workshop-image {
    width: 100%;
    height: 180px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.workshop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.workshop-card:hover .workshop-image img {
    transform: scale(1.1);
}

.workshop-card:hover {
    border-left-color: var(--code-lime);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.workshop-date {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    width: fit-content;
}

.workshop-date .month {
    font-size: 14px;
    color: var(--text-secondary);
}

.workshop-date .day {
    font-size: 20px;
    font-weight: 700;
    color: var(--code-lime);
    font-family: 'JetBrains Mono', monospace;
}

.workshop-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.workshop-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.workshop-details {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
}

/* Resources Section */
.resources-section {
    background: var(--bg-dark);
}

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

.resource-card {
    background: var(--bg-card);
    padding: 0;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.resource-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.resource-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.resource-card:hover .resource-image img {
    transform: scale(1.1);
}

.resource-card h3,
.resource-card p,
.resource-card .resource-link {
    padding: 0 35px;
}

.resource-card h3 {
    margin-top: 25px;
    margin-bottom: 15px;
}

.resource-card p {
    margin-bottom: 20px;
}

.resource-card .resource-link {
    margin-bottom: 35px;
}

.resource-card:hover {
    border-color: var(--code-lime);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.resource-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.resource-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.resource-link {
    color: var(--code-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-family: 'JetBrains Mono', monospace;
}

.resource-link:hover {
    color: var(--code-lime);
    text-shadow: 0 0 8px var(--code-lime);
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.testimonials-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.testimonials-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.testimonials-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(2, 6, 23, 0.98) 100%);
    z-index: 1;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

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

.testimonial-card {
    background: var(--bg-card);
    padding: 35px;
    border-radius: 12px;
    border-top: 4px solid var(--code-lime);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--code-lime);
    position: relative;
    z-index: 1;
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    color: var(--text-primary);
    font-style: italic;
    line-height: 1.7;
    font-size: 16px;
}

.testimonial-author strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 5px;
    font-size: 16px;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 14px;
    font-family: 'JetBrains Mono', monospace;
}

/* Contact Section */
.contact-section {
    background: var(--bg-dark);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--code-lime);
    font-family: 'JetBrains Mono', monospace;
}

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

.info-item a {
    color: var(--code-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--code-lime);
    text-shadow: 0 0 8px var(--code-lime);
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 500;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    background: var(--bg-darker);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--code-lime);
    box-shadow: 0 0 10px rgba(132, 204, 22, 0.2);
}

.form-group textarea {
    resize: vertical;
}

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

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--code-lime);
    font-family: 'JetBrains Mono', monospace;
}

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

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--code-lime);
    text-shadow: 0 0 8px var(--code-lime);
}

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

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

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

/* Policy Pages Styles */
.policy-page {
    padding: 40px 0 80px;
    background: var(--bg-dark);
}

.policy-header {
    background: var(--bg-card);
    padding: 60px 0;
    margin-bottom: 60px;
    border-bottom: 1px solid var(--border-color);
}

.policy-header h1 {
    font-size: 42px;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.policy-header p {
    color: var(--text-secondary);
    font-size: 16px;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--code-lime);
    font-family: 'JetBrains Mono', monospace;
}

.policy-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.policy-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.policy-content ul,
.policy-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.policy-content li {
    margin-bottom: 10px;
}

.policy-content a {
    color: var(--code-blue);
    text-decoration: none;
}

.policy-content a:hover {
    color: var(--code-lime);
    text-shadow: 0 0 8px var(--code-lime);
}

/* Thanks Page */
.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    text-align: center;
    padding: 40px 20px;
}

.thanks-content h1 {
    font-size: 48px;
    color: var(--code-lime);
    margin-bottom: 20px;
    font-family: 'JetBrains Mono', monospace;
}

.thanks-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
        position: relative;
    }

    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-card);
        border-bottom: 1px solid var(--border-color);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        width: 100%;
        max-width: 100vw;
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        width: 100%;
    }

    .burger-menu {
        display: flex;
    }

    .hero {
        padding: 0;
        width: 100%;
        overflow-x: hidden;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        width: 100%;
        padding: 80px 0 60px;
    }

    .hero-code {
        width: 100%;
        overflow-x: hidden;
    }

    .code-block {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
    }

    .code-content {
        padding: 16px;
        font-size: 12px;
    }

    .code-content pre {
        font-size: 12px;
    }

    .hero-title {
        font-size: 36px;
        word-wrap: break-word;
    }

    .hero-subtitle {
        font-size: 18px;
        word-wrap: break-word;
    }

    .section-header {
        padding: 0 10px;
    }

    .section-header h2 {
        font-size: 32px;
        word-wrap: break-word;
    }

    .course-content {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 30px;
    }

    .integration-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .endpoint-header {
        padding: 15px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .endpoint-path {
        font-size: 13px;
        word-break: break-all;
        min-width: 0;
    }

    .code-block-small,
    .code-block-interactive {
        width: 100%;
        overflow-x: auto;
    }

    .code-block-small pre,
    .code-block-interactive pre {
        font-size: 11px;
        padding: 12px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .cookie-btn {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .section-header {
        padding: 0 5px;
    }

    .section-header h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .training-card,
    .workshop-card,
    .resource-card {
        padding: 20px;
    }

    .code-content {
        padding: 12px;
        font-size: 11px;
    }

    .code-content pre {
        font-size: 11px;
    }

    .code-block-small pre,
    .code-block-interactive pre {
        font-size: 10px;
        padding: 10px;
    }

    .endpoint-header {
        padding: 12px;
    }

    .endpoint-method {
        font-size: 11px;
        padding: 4px 8px;
        min-width: 50px;
    }

    .endpoint-path {
        font-size: 12px;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }
}
