/* ==========================================================================
   DrumTongue - Music School Stylesheet
   ========================================================================== */

/* ==========================================================================
   1. CSS Reset & Base Styles
   ========================================================================== */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #d32f2f;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #b71c1c;
}

ul {
    list-style: none;
}

/* ==========================================================================
   2. Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

/* ==========================================================================
   3. Layout & Container
   ========================================================================== */

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

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

/* ==========================================================================
   4. Header & Navigation
   ========================================================================== */

.header {
    background-color: #1a1a1a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu li a {
    color: #e0e0e0;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease, background-color 0.3s ease;
    border-radius: 4px;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #fff;
    background-color: #d32f2f;
}

/* ==========================================================================
   5. Hero Section
   ========================================================================== */

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('../images/hero.jpg') center/cover no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.3) 0%, rgba(26, 26, 26, 0.7) 100%);
}

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

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   6. Section Styles
   ========================================================================== */

section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.section-title-small {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

/* ==========================================================================
   7. Buttons
   ========================================================================== */

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: #d32f2f;
    color: #fff;
}

.btn-primary:hover {
    background-color: #b71c1c;
    color: #fff;
}

.btn-secondary {
    background-color: #424242;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #212121;
    color: #fff;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.125rem;
}

/* ==========================================================================
   8. Features/Methodology Section
   ========================================================================== */

.methodology {
    background-color: #f5f5f5;
}

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

.feature-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    color: #d32f2f;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.feature-text {
    color: #666;
    line-height: 1.6;
}

/* ==========================================================================
   9. Programs Section
   ========================================================================== */

.programs {
    background-color: #fff;
}

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

.program-card {
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    transition: border-color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.program-card:hover {
    border-color: #d32f2f;
    transform: translateY(-5px);
}

.program-card.featured {
    border-color: #d32f2f;
    background-color: #fff8f8;
}

.program-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #d32f2f;
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.program-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.program-duration {
    color: #757575;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.program-features {
    margin: 1.5rem 0;
}

.program-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.program-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d32f2f;
    font-weight: bold;
}

.program-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d32f2f;
    margin: 1.5rem 0;
}

/* ==========================================================================
   10. Testimonials Section
   ========================================================================== */

.testimonials {
    background-color: #f5f5f5;
}

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

.testimonial-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    text-align: center;
    border-top: 1px solid #e0e0e0;
    padding-top: 1rem;
}

.author-name {
    font-weight: 700;
    color: #1a1a1a;
}

.author-info {
    color: #757575;
    font-size: 0.875rem;
}

/* ==========================================================================
   11. CTA (Call to Action) Sections
   ========================================================================== */

.cta {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    color: #fff;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    color: #fff;
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.cta-secondary {
    background-color: #f5f5f5;
    text-align: center;
}

.cta-secondary .cta-title {
    color: #1a1a1a;
}

.cta-secondary .cta-text {
    color: #555;
}

/* ==========================================================================
   12. Forms
   ========================================================================== */

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.required {
    color: #d32f2f;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
}

.checkbox-text a {
    text-decoration: underline;
}

.form-note {
    font-size: 0.875rem;
    color: #757575;
    margin-top: 0.5rem;
}

/* ==========================================================================
   13. Footer
   ========================================================================== */

.footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 0 1rem;
}

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

.footer-column h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.footer-description {
    color: #b0b0b0;
    line-height: 1.6;
}

.footer-menu li,
.footer-contacts li {
    margin-bottom: 0.5rem;
}

.footer-menu a,
.footer-contacts a {
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.footer-menu a:hover,
.footer-contacts a:hover {
    color: #d32f2f;
}

.footer-title {
    color: #fff !important;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #d32f2f;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #b0b0b0;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-legal a {
    color: #e0e0e0;
    font-size: 0.875rem;
}

.footer-legal .separator {
    color: #666;
}

/* ==========================================================================
   14. Page Header (Subpages)
   ========================================================================== */

.page-header {
    background: linear-gradient(135deg, #424242 0%, #1a1a1a 100%);
    color: #fff;
    text-align: center;
    padding: 3rem 0;
}

.page-header-legal {
    background: linear-gradient(135deg, #616161 0%, #424242 100%);
    color: #fff;
    text-align: center;
    padding: 3rem 0;
}

.page-title {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #e0e0e0;
}

.legal-date {
    color: #e0e0e0;
    font-size: 1rem;
}

/* ==========================================================================
   15. About Page Styles
   ========================================================================== */

.about-history {
    background-color: #fff;
}

.content-text p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.team {
    background-color: #f5f5f5;
}

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

.team-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.team-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-name {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
}

.team-position {
    padding: 0 1.5rem 1rem;
    color: #d32f2f;
    font-weight: 600;
}

.team-bio,
.team-specialty {
    padding: 0 1.5rem 1rem;
    color: #555;
    line-height: 1.6;
}

.values {
    background-color: #fff;
}

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

.value-card {
    padding: 2rem;
    border-left: 4px solid #d32f2f;
    background-color: #f9f9f9;
}

.value-number {
    font-size: 3rem;
    font-weight: 700;
    color: #d32f2f;
    opacity: 0.3;
    margin-bottom: 0.5rem;
}

.value-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.value-text {
    color: #555;
    line-height: 1.6;
}

.achievements {
    background-color: #f5f5f5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #d32f2f;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.stat-description {
    color: #757575;
    font-size: 0.875rem;
}

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

.achievements-subtitle {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.achievements-list {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
}

.achievements-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
    line-height: 1.6;
}

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

/* ==========================================================================
   16. Services Page Styles
   ========================================================================== */

.programs-intro {
    background-color: #fff;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.125rem;
    color: #555;
    line-height: 1.8;
}

.programs-detailed {
    background-color: #f5f5f5;
}

.program-detail {
    background-color: #fff;
    border-radius: 8px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.program-detail.alternate {
    background-color: #fafafa;
}

.program-detail-header {
    margin-bottom: 2rem;
    position: relative;
}

.program-detail-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.program-detail-badge {
    display: inline-block;
    background-color: #757575;
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.program-detail-badge.popular {
    background-color: #d32f2f;
}

.program-detail-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.program-detail-info h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.program-detail-info p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.program-features-list {
    list-style: none;
    margin: 1rem 0;
}

.program-features-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #555;
}

.program-features-list li:before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #d32f2f;
}

.program-price-block {
    background-color: #fff8f8;
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid #d32f2f;
    margin-top: 1.5rem;
    text-align: center;
}

.price-main {
    font-size: 2rem;
    font-weight: 700;
    color: #d32f2f;
    margin-bottom: 0.5rem;
}

.price-details {
    color: #757575;
    font-size: 0.875rem;
}

.program-detail-image {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.program-detail-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.learning-process {
    background-color: #fff;
}

.process-steps {
    display: grid;
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #d32f2f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.step-description {
    color: #555;
    line-height: 1.6;
}

.faq {
    background-color: #f5f5f5;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.faq-answer {
    color: #555;
    line-height: 1.6;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.faq-answer ul li {
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   17. Contact Page Styles
   ========================================================================== */

.contact-section {
    background-color: #f5f5f5;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2rem;
}

.contact-label {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.contact-value {
    color: #555;
    margin-bottom: 0.25rem;
}

.contact-note {
    color: #757575;
    font-size: 0.875rem;
}

.social-media {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.social-links-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background-color: #f5f5f5;
    border-radius: 4px;
    color: #333;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.social-button:hover {
    background-color: #d32f2f;
    color: #fff;
}

.contact-form-wrapper {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-intro {
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form .form-row {
    margin-bottom: 1.5rem;
}

.directions {
    background-color: #fff;
}

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

.direction-card {
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #d32f2f;
}

.direction-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.direction-steps,
.direction-landmarks {
    list-style: none;
    margin-top: 1rem;
}

.direction-steps li,
.direction-landmarks li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.direction-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #d32f2f;
}

.direction-landmarks li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d32f2f;
}

.quick-contact {
    background-color: #f5f5f5;
    text-align: center;
}

.quick-contact-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.quick-contact-text {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2rem;
}

.quick-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ==========================================================================
   18. Legal Pages Styles (Privacy & Terms)
   ========================================================================== */

.legal-content {
    background-color: #fff;
    padding: 4rem 0;
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-subtitle {
    font-size: 1.75rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #d32f2f;
}

.legal-subheading {
    font-size: 1.25rem;
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-list {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-list li {
    margin-bottom: 0.75rem;
    color: #555;
    line-height: 1.6;
}

.legal-contact {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #d32f2f;
    margin-top: 1.5rem;
}

.legal-contact p {
    margin-bottom: 0.5rem;
}

.legal-back {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

/* ==========================================================================
   19. Responsive Design
   ========================================================================== */

@media (max-width: 968px) {
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .program-detail-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .features-grid,
    .team-grid,
    .values-grid,
    .stats-grid,
    .directions-grid {
        grid-template-columns: 1fr;
    }

    .social-links-contact {
        grid-template-columns: 1fr;
    }

    .quick-contact-buttons {
        flex-direction: column;
    }
}

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

    .btn {
        width: 100%;
    }

    .program-detail {
        padding: 1.5rem;
    }

    .process-step {
        flex-direction: column;
    }
}