/* TechAkademi - Modern IT Education Platform Styles */

/* CSS Variables - Color Palette */
:root {
    --selective-yellow: #ffbe0bff;
    --orange-red: #fb5607ff;
    --vivid-cerise: #ff006eff;
    --blue-violet: #8338ecff;
    --dodger-blue: #3a86ffff;
    --dark-bg: #1a1a2e;
    --light-bg: #f8f9fa;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --white: #ffffff;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--dark-bg);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--selective-yellow);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--selective-yellow);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--blue-violet), var(--dodger-blue));
    color: var(--white);
    padding: 4rem 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--selective-yellow);
    color: var(--dark-bg);
    font-weight: bold;
}

.btn-primary:hover {
    background-color: var(--orange-red);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--dark-bg);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Sections */
section {
    padding: 4rem 0;
}

section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Feature Cards */
.features-grid,
.programs-grid,
.testimonials-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card,
.program-card,
.testimonial-card,
.blog-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-card:hover,
.program-card:hover,
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3,
.program-card h3 {
    color: var(--blue-violet);
    margin-bottom: 1rem;
}

/* Programs */
.program-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    margin: -2rem -2rem 1rem -2rem;
}

.program-duration {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.program-highlights {
    list-style: none;
    margin: 1rem 0;
}

.program-highlights li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.program-highlights li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--dodger-blue);
    font-weight: bold;
}

.program-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.program-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--orange-red);
}

/* Stats */
.stats {
    background: linear-gradient(135deg, var(--vivid-cerise), var(--orange-red));
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta {
    background: var(--dark-bg);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer h3,
.footer h4 {
    color: var(--selective-yellow);
    margin-bottom: 1rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--selective-yellow);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
}

/* Cookie Consent */
.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content a {
    color: var(--selective-yellow);
}

.cookie-btn {
    background-color: var(--selective-yellow);
    color: var(--dark-bg);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.cookie-btn:hover {
    background-color: var(--orange-red);
    color: var(--white);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--blue-violet), var(--dodger-blue));
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Content Blocks */
.content-block {
    margin-bottom: 2rem;
}

.content-block h2 {
    text-align: left;
    color: var(--blue-violet);
    margin-bottom: 1rem;
}

.content-block h3 {
    color: var(--dodger-blue);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.content-block ul,
.content-block ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.content-block li {
    margin-bottom: 0.5rem;
}

/* Forms */
.contact-form,
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dodger-blue);
}

.checkbox-group label {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Thank You Page */
.thankyou-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thankyou-content {
    text-align: center;
    max-width: 600px;
}

.success-icon {
    font-size: 5rem;
    color: var(--dodger-blue);
    margin-bottom: 1rem;
}

.thankyou-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Content + Image Sections */
.content-image-section,
.image-content-section {
    padding: 5rem 0;
}

.content-image-section {
    background-color: var(--white);
}

.image-content-section {
    background-color: var(--light-bg);
}

.content-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-image-grid.reverse {
    direction: ltr;
}

.content-side h2 {
    font-size: 2.2rem;
    color: var(--dark-bg);
    margin-bottom: 1.5rem;
    text-align: left;
}

.content-side p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    padding: 0.8rem 0;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.image-side img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.stats-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-mini-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.stat-mini-item strong {
    display: block;
    font-size: 2rem;
    color: var(--blue-violet);
    margin-bottom: 0.5rem;
}

.stat-mini-item span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Course Schedule Section */
.course-schedule-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.schedule-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    min-width: 900px;
}

.schedule-table thead {
    background: linear-gradient(135deg, var(--blue-violet), var(--dodger-blue));
    color: var(--white);
}

.schedule-table th {
    padding: 1.2rem;
    text-align: left;
    font-weight: bold;
    font-size: 0.95rem;
}

.schedule-table td {
    padding: 1.2rem;
    border-bottom: 1px solid #eee;
}

.schedule-table tbody tr {
    transition: background-color 0.3s;
}

.schedule-table tbody tr:hover {
    background-color: var(--light-bg);
}

.schedule-table tbody tr:last-child td {
    border-bottom: none;
}

.status-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.status-badge.available {
    background-color: #d4edda;
    color: #155724;
}

.status-badge.limited {
    background-color: #fff3cd;
    color: #856404;
}

.status-badge.full {
    background-color: #f8d7da;
    color: #721c24;
}

.schedule-note {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 10px;
    text-align: center;
}

.schedule-note p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: var(--light-bg);
}

/* Success Stories */
.success-stories {
    background-color: var(--light-bg);
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-content {
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--text-dark);
}

.testimonial-author {
    border-top: 2px solid var(--dodger-blue);
    padding-top: 1rem;
}

.testimonial-author strong {
    display: block;
    color: var(--blue-violet);
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--blue-violet), var(--dodger-blue));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    color: var(--blue-violet);
    margin-bottom: 1rem;
}

/* Blog Section */
.blog-section {
    background-color: var(--light-bg);
}

.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-image {
    width: calc(100% + 4rem);
    margin: -2rem -2rem 1rem -2rem;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-date {
    color: var(--text-light);
}

.blog-category {
    color: var(--dodger-blue);
    font-weight: bold;
}

.blog-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.blog-content h2 a {
    color: var(--dark-bg);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-content h2 a:hover {
    color: var(--blue-violet);
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    flex: 1;
}

.read-more {
    color: var(--dodger-blue);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--blue-violet);
}

/* Blog Post Page */
.blog-post {
    padding: 2rem 0;
}

.post-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.post-meta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.post-date {
    color: var(--text-light);
}

.post-category {
    color: var(--dodger-blue);
    font-weight: bold;
}

.post-header h1 {
    font-size: 2.5rem;
    color: var(--dark-bg);
    margin-bottom: 1rem;
}

.post-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.post-content h2 {
    color: var(--blue-violet);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.post-content h3 {
    color: var(--dodger-blue);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.post-content p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.post-content ul,
.post-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-cta {
    background: linear-gradient(135deg, var(--blue-violet), var(--dodger-blue));
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin: 3rem 0;
}

.post-cta h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.post-cta p {
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.post-footer {
    max-width: 800px;
    margin: 2rem auto;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
}

.back-link {
    color: var(--dodger-blue);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--blue-violet);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--blue-violet), var(--dodger-blue));
    color: var(--white);
    padding: 3rem 0;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.newsletter-form {
    flex-direction: row;
    gap: 1rem;
    margin-top: 2rem;
}

.newsletter-form input {
    flex: 1;
}

/* Contact Page */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info h2 {
    color: var(--blue-violet);
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 10px;
}

.contact-icon {
    font-size: 2rem;
}

.contact-text h3 {
    color: var(--blue-violet);
    margin-bottom: 0.5rem;
}

.contact-hours {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.social-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 10px;
}

.social-section h3 {
    color: var(--blue-violet);
    margin-bottom: 1rem;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 5px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.social-link:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.social-icon {
    font-size: 1.5rem;
}

.contact-form-wrapper {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
}

.contact-form-wrapper h2 {
    color: var(--blue-violet);
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    background-color: var(--light-bg);
    padding: 4rem 0;
}

.faq-section h2 {
    text-align: center;
    color: var(--dark-bg);
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: var(--blue-violet);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Legal Content */
.legal-content {
    padding: 3rem 0;
}

.legal-content .container {
    max-width: 900px;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content strong {
    color: var(--blue-violet);
}

.values-list {
    list-style: none;
    margin-left: 0;
}

.values-list li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--light-bg);
    border-left: 4px solid var(--dodger-blue);
    border-radius: 5px;
}

.stats-inline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 10px;
}

.stat-item .stat-number {
    font-size: 2.5rem;
    color: var(--blue-violet);
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cookie-table thead {
    background: linear-gradient(135deg, var(--blue-violet), var(--dodger-blue));
    color: var(--white);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cookie-table tbody tr:hover {
    background-color: var(--light-bg);
}

/* About Page */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 0;
}

.about-content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--dodger-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    display: none;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.scroll-to-top:hover {
    background: var(--blue-violet);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .programs-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .content-image-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-image-grid.reverse {
        direction: ltr;
    }
    
    .content-image-grid.reverse .image-side {
        order: 1;
    }
    
    .content-image-grid.reverse .content-side {
        order: 2;
    }
}

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons,
    .thankyou-actions {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .features-grid,
    .programs-grid,
    .testimonials-grid,
    .blog-grid,
    .steps-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .post-header h1 {
        font-size: 1.8rem;
    }
    
    .cookie-table {
        font-size: 0.9rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
    
    .stats-mini {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .schedule-table {
        font-size: 0.85rem;
    }
    
    .schedule-table th,
    .schedule-table td {
        padding: 0.8rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
