* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0a0e14;
    --bg-secondary: #131820;
    --primary: #ff7a18;
    --primary-hover: #ff8f38;
    --primary-light: #ff9950;
    --primary-soft: rgba(255, 122, 24, 0.12);
    --text: #ffffff;
    --text-secondary: #b8c5d6;
    --text-muted: rgba(255, 255, 255, 0.5);
    --card: rgba(255, 255, 255, 0.04);
    --border: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.08);
}

html[data-theme="light"] {
    --bg: #f5f5f7;
    --bg-secondary: #ffffff;
    --text: #1d1d1f;
    --text-secondary: #555555;
    --text-muted: rgba(0, 0, 0, 0.5);
    --card: rgba(0, 0, 0, 0.04);
    --border: rgba(0, 0, 0, 0.06);
    --border-light: rgba(0, 0, 0, 0.08);
}

html{
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.78;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1, "liga" 1;
    transition: background 0.45s ease, color 0.45s ease;
}

h1 {
    font-size: clamp(38px, 5.2vw, 52px);
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

h2 {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 600;
    margin-bottom: 0.85rem;
    letter-spacing: -0.3px;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: -0.2px;
}

p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.85;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16.8px 42px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.header a {
    font-size: 15.4px;
    font-weight: 500;
    letter-spacing: 0.4px;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.header a:hover {
    color: var(--primary);
}

.nav {
    display: flex;
    align-items: center;
    gap: 8.4px;
    flex: 1;
    justify-content: flex-end;
}

.nav ul {
    display: flex;
    gap: 8.4px;
    list-style: none;
    flex-wrap: nowrap;
    align-items: center;
}

.nav ul li a {
    padding: 8.4px 14.7px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav ul li a:hover {
    background: var(--primary-soft);
}

.logo {
    display: flex;
    align-items: center;
    gap: 21px;
    flex-wrap: nowrap;
    flex-shrink: 0;
}

.logo img {
    height: 50.4px;
    width: auto;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 122, 24, 0.15);
}

.logo img:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 24, 0.25);
}

.logo h2 {
    color: var(--text);
    margin-bottom: 0;
    white-space: nowrap;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.3px;
    transition: all 0.3s ease;
}

.logo h2:hover {
    color: var(--primary);
}

.dropdown {
    position: relative;
}

.dropdown-btn {
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    font-family: inherit;
    font-size: 15.4px;
    font-weight: 500;
    letter-spacing: 0.4px;
    padding: 8.4px 14.7px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-btn:hover {
    background: var(--primary-soft);
    color: var(--primary);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8.4px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6.3px;
    padding: 12.6px;
    min-width: 147px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.dropdown-menu li a {
    display: block;
    padding: 10.5px 12.6px;
    text-align: center;
    font-size: 14.3px;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
    background: var(--primary-soft);
    color: var(--primary);
}

.apply-btn {
    margin-left: 25.2px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border: 1px solid rgba(255, 122, 24, 0.3);
    color: var(--text);
    padding: 10.5px 29.4px;
    border-radius: 8px;
    font-size: 15.4px;
    font-weight: 600;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 122, 24, 0.2);
}

.apply-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-light) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 24, 0.3);
}

.apply-btn:active:not(:disabled) {
    transform: translateY(0);
}

.apply-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.theme-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(255, 122, 24, 0.3);
    z-index: 999;
}

.theme-toggle:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 122, 24, 0.4);
}

.theme-toggle:active {
    transform: scale(0.95);
}

.hero {
    min-height: calc(100vh - 86px);
    display: flex;
    align-items: center; /* Merkeze geri aldım */
    justify-content: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, rgba(255, 122, 24, 0.08) 0%, rgba(255, 122, 24, 0.02) 50%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 122, 24, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(60px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 122, 24, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(60px);
}

.hero-content {
    max-width: 1400px;
    margin: 0 0 0 5%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    transform: translateY(-50px); /* Biraz daha yukarı taşındı */
}

.hero-top {
    padding-left: 0;
    margin-bottom: -15px;
    transform: translateY(20px);
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-soft);
    border: 1px solid var(--primary);
    border-radius: 100px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-main {
    display: grid;
    grid-template-columns: auto 1fr; /* Başlık kendi genişliğinde, geri kalan sağa */
    gap: 120px;
    align-items: center;
    margin-top: 40px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
}

.hero h1 {
    font-size: clamp(40px, 5.5vw, 72px); /* Satıra sığması için biraz küçültüldü */
    font-weight: 800;
    line-height: 1.1;
    color: var(--text);
    letter-spacing: -2px;
    white-space: nowrap; /* Kelimelerin bölünmesini engellemek için */
}

.hero-highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 0;
}

.hero-right p {
    font-size: 17.5px;
    line-height: 1.9;
    color: var(--text-secondary);
    max-width: 470px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
}

.hero-btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 20px rgba(255, 122, 24, 0.2);
}

.hero-btn-primary:hover:not(:disabled) {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 122, 24, 0.3);
}

.hero-btn-secondary {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    backdrop-filter: blur(5px);
    border: 1px solid var(--border);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.hero-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

footer {
    margin-top: 120px;
    padding: 70px 80px 30px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.02) 0%,
            rgba(255,255,255,0.01) 100%
        );

    border-top: 1px solid var(--border);

    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';

    position: absolute;
    top: -150px;
    right: -100px;

    width: 350px;
    height: 350px;

    background: rgba(255, 122, 24, 0.08);

    border-radius: 50%;
    filter: blur(100px);

    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 80px;

    position: relative;
    z-index: 2;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 18px;
}

.footer-brand p {
    max-width: 340px;
    color: var(--text-secondary);
}

.footer-column h4 {
    font-size: 15px;
    margin-bottom: 20px;

    color: var(--text);

    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;

    transition: 0.25s ease;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 24px;

    border-top: 1px solid var(--border);

    display: flex;
    justify-content: space-between;
    align-items: center;

    color: var(--text-muted);
    font-size: 14px;
}

.schedule {
    padding: 140px 80px;
}

.schedule-header {
    margin-bottom: 70px;
    max-width: 700px;
}

.schedule-header h2 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.05;

    margin: 20px 0;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.schedule-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.schedule-day {
    margin-bottom: 10px;
}

.schedule-day span {
    font-size: 28px;
    font-weight: 700;

    color: var(--text);
}

.schedule-card {
    padding: 28px;
    border-radius: 24px;

    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);

    backdrop-filter: blur(10px);

    transition: 0.35s ease;
}

.schedule-card span {
    display: block;

    color: var(--primary);

    font-size: 14px;
    font-weight: 700;

    margin-bottom: 14px;

    letter-spacing: 0.5px;
}

.schedule-card h3 {
    margin-bottom: 0;

    font-size: 21px;
}

.schedule-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,122,24,0.25);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.schedule-card.important {
    border: 1px solid rgba(255, 122, 24, 0.5);
    background: linear-gradient(
        135deg,
        rgba(255, 122, 24, 0.10),
        rgba(255, 255, 255, 0.03)
    );

    box-shadow: 0 0 25px rgba(255, 122, 24, 0.15);
}

.schedule-card.important h3 {
    color: var(--primary);
}

.schedule-card.highlight {
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
}

.schedule-card.highlight h3 {
    color: var(--text);
    font-weight: 700;
}

.card-container {
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    gap: 32px;          /* kartlar arası boşluk */
    justify-content: center; /* ortalar */
    flex-wrap: wrap;    /* küçük ekranda alt satıra iner */
    max-width: 1440px;
}

.card {
  position: relative;
  width: min(650px, calc((100% - 96px) / 2));
  min-height: 420px; /* biraz daha doğal yükseklik */
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 122, 24, 0.25);
  background: rgba(255, 255, 255, 0.05);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

 .card-title {
    display: flex;
    align-items: center;
    gap: 16px;
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 122, 24, 0.14);
    color: var(--primary);
    font-size: 28px;
}

.card-header h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.card-desc {
  opacity: 0.85;
  line-height: 1.9;
  font-size: 15.2px;
  margin-bottom: 1.15rem;
}

.card-link {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}

.card-link:hover {
  color: var(--primary-hover);
}

.card-questions {
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.card-questions h4 {
  font-size: 14.5px;
  margin-bottom: 10px;
  opacity: 0.85;
}

.card-questions ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-questions li {
  font-size: 14px;
  opacity: 0.78;
  line-height: 1.7;
  padding-left: 14px;
  position: relative;
}

/* küçük nokta efekti */
.card-questions li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
}

@media (max-width: 768px) {
  .card-container {
    gap: 20px;
  }

  .card {
    width: 100%;
  }
}

/* Contact Page Styles */
.contact-section {
    padding: 100px 80px;
    position: relative;
    overflow: hidden;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-section h2 {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 600;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.about-section p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-secondary);
    margin: 0;
}

.contact-header {
    margin-bottom: 0;
}

.contact-header h2 {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.contact-header p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.contact-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.contact-card {
    padding: 32px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 12px 32px rgba(255, 122, 24, 0.15);
}

.contact-icon {
    font-size: 28px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 12px;
    color: var(--text);
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: var(--primary);
    letter-spacing: -0.3px;
}

.contact-card p {
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--text-secondary);
    margin: 0;
}

.contact-link {
    display: inline-block;
    padding: 8px 12px;
    background: var(--primary-soft);
    color: var(--text);
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 122, 24, 0.2);
}

.contact-link:hover {
    background: var(--primary);
    color: var(--text);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 24px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.contact-card {
    padding: 24px;
}


.faq-section {
    padding: 100px 80px;
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-header {
    margin-bottom: 60px;
    text-align: center;
}

.faq-header h2 {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.faq-header p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-secondary);
    margin: 0;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 122, 24, 0.25);
    background: rgba(255, 255, 255, 0.04);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
    letter-spacing: -0.3px;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    font-size: 14px;
    color: var(--primary);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px;
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 24px;
    }

    .faq-question {
        padding: 16px 18px;
        font-size: 15px;
    }

    .faq-answer p {
        padding: 0 18px 18px;
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .header {
        padding: 16px 28px;
    }

    .header a,
    .dropdown-btn,
    .apply-btn {
        font-size: 14px;
    }

    .nav {
        justify-content: space-between;
        gap: 12px;
        flex-wrap: wrap;
    }

    .nav ul {
        width: 100%;
        justify-content: center;
        gap: 8px;
    }

    .nav ul li a,
    .dropdown-btn {
        padding: 8px 12px;
    }

    .logo {
        gap: 14px;
    }

    .logo h2 {
        font-size: 20px;
    }

    .hero {
        padding: 60px 40px;
    }

    .hero-main {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: stretch;
        padding: 16px 20px;
    }

    .logo {
        width: 100%;
        justify-content: center;
        gap: 14px;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        margin-bottom: 12px;
    }

    .nav {
        width: 100%;
        justify-content: space-between;
        gap: 12px;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav ul {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .nav ul li {
        width: auto;
    }

    .apply-btn {
        width: 100%;
        max-width: none;
        margin-left: 0;
        padding: 12px 16px;
    }

    .hero {
        min-height: auto;
        padding: 40px 20px;
    }

    .hero-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        white-space: normal;
        text-align: center;
    }

    .hero-right,
    .hero-left {
        align-items: center;
        text-align: center;
    }

    .hero-right p {
        max-width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .contact-container,
    .faq-container {
        padding: 0 10px;
    }

    .contact-section,
    .faq-section,
    .schedule {
        padding: 60px 20px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-cards,
    .faq-items {
        gap: 20px;
    }

    .contact-item {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 14px 16px;
    }

    .logo {
        gap: 10px;
    }

    .logo img {
        height: 44px;
    }

    .nav ul {
        gap: 6px;
    }

    .hero {
        padding: 30px 16px;
    }

    .hero h1 {
        font-size: clamp(32px, 8vw, 44px);
    }

    .hero-right p,
    .about-section p,
    .faq-question,
    .faq-answer p {
        font-size: 14px;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .contact-link {
        font-size: 12px;
        padding: 8px 10px;
    }
}
.card-img {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.card-img img {
    width: 30%;
    height: 250px;
    object-fit:cover;
    margin: 0 10px 0 10px;
    border-radius: 18px;
}