@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
  --primary: #0a263b;
  --accent: #ee741f;
  --white: #ffffff;
  --dark: #1e1e1e;
  --muted: #6c757d;
  --light-bg: #f7f9fc;
  --card-bg: #ffffff;
  --text-dark: #1e293b;
  --text-muted: #64748b;

  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 16px 40px rgba(0, 0, 0, 0.12);

  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 6px;

  --shadow-sm: 0 6px 20px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 12px 35px rgba(0, 0, 0, 0.15);

  --transition-fast: 0.3s ease;
  --transition-smooth: 0.45s cubic-bezier(0.65, 0, 0.076, 1);

  --font-body: 'Inter', sans-serif;
  --font-heading: 'Merriweather', serif;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

body {
    font-family: var(--font-body);
}

.parallax-container {
    position: relative;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-page-content {
    background: var(--white);
    padding: 80px 120px;
    text-align: center;
}

.parallax-page-content h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 30px;
}

.parallax-page-content h2 span {
    color: var(--accent);
}

.parallax-page-content p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--primary);
    max-width: 900px;
    margin: 0 auto 20px;
}

.parallax-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
    z-index: -1;
}

.parallax-content {
    max-width: 900px;
    padding: 20px;
}

.parallax-content h1 {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    letter-spacing: 1px;
}

.parallax-content p {
    font-size: 20px;
    opacity: 0.9;
}

@media (max-width: 991px) {
    .parallax-content h1 {
        font-size: 42px;
    }

    .parallax-page-content {
        padding: 60px 40px;
    }
}

@media (max-width: 575px) {
    .parallax-container {
        height: 55vh;
    }

    .parallax-content h1 {
        font-size: 34px;
    }

    .parallax-content p {
        font-size: 16px;
    }

    .parallax-page-content {
        padding: 50px 20px;
    }

    .parallax-page-content h2 {
        font-size: 32px;
    }
}