
:root {
  --primary: #0052cc;
  --secondary: #0b1f44;
  --text: #1a1a1a;
  --bg: #ffffff;
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

button {
  border-radius: var(--radius);
  cursor: pointer;
}

/* Full-Screen Cookie Popup Styles */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); /* Lighter background for better visibility */
    display: none; /* Initially hidden */
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure the popup is on top */
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); /* Lighter semi-transparent background */
}

.popup-content {
    position: relative;
    z-index: 1;
    background-color: white;
    padding: 40px; /* Reduced padding */
    border-radius: 10px;
    max-width: 600px; /* Slightly smaller max-width for a better fit */
    width: 90%; /* Make it responsive */
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.popup-content h2 {
    font-size: 24px; /* Adjusted font size for mobile */
    margin-bottom: 20px; /* Reduced spacing */
}

.popup-content p {
    font-size: 16px; /* Adjusted font size for mobile */
    margin-bottom: 20px; /* Reduced spacing */
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 20px; /* Reduced gap between buttons */
    margin-top: 20px; /* Adjusted margin for buttons */
}

/* Mobile-specific adjustments */
@media (max-width: 600px) {
    .popup-content {
        padding: 30px; /* Less padding on smaller screens */
        max-width: 90%; /* Ensure it uses most of the screen width */
    }

    .popup-content h2 {
        font-size: 22px; /* Smaller title for mobile */
    }

    .popup-content p {
        font-size: 14px; /* Smaller text for mobile */
    }

    .cookie-buttons {
        gap: 15px; /* Less space between buttons */
    }
}


/* === Components & Rhythm === */
:root {
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --h1: clamp(1.8rem, 2.5vw, 2.4rem);
  --h2: clamp(1.4rem, 2vw, 1.8rem);
  --h3: 1.2rem;
}

h1 { font-size: var(--h1); line-height: 1.2; margin: var(--space-5) 0 var(--space-3); }
h2 { font-size: var(--h2); line-height: 1.25; margin: var(--space-4) 0 var(--space-2); }
h3 { font-size: var(--h3); margin: var(--space-3) 0 var(--space-1); }

p { margin: 0 0 var(--space-3); }

.container {
  max-width: 1200px;
  padding: 0 var(--space-3);
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 10px 16px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background: var(--primary);
  color: #fff;
}

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

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: var(--space-4);
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}

@media (max-width: 768px) {
  h1 { margin-top: var(--space-4); }
  .container { padding: 0 var(--space-2); }
}


/* === Inner Page Hero Title Size Fix === */
.hero h1,
.inner-hero h1,
.page-hero h1 {
  font-size: clamp(1.6rem, 2vw, 2rem) !important;
}
