body {
    background-color: #0c0c0c;
    margin: 0px;
  }

  .container {
    width:75%;
    margin: auto;
  }

   /* Text */

   h1 {
    color: #930c0c;
    font-size: clamp(24px, 3vw, 35px); /* Minimum 24px, scales with viewport width, max 35px */
    font-family: 'Pirulen', Arial, sans-serif;
    font-weight: 800;
    font-display: swap;
}

h2 {
    font-size: clamp(22px, 2.8vw, 30px); /* Minimum 22px, scales with viewport width, max 30px */
    font-family: 'Kanit Bold', Arial, sans-serif;
    font-weight: 500;
    color: #e2e2e2;
    font-display: swap;
}

h3 {
    font-size: clamp(20px, 2.5vw, 25px); /* Minimum 20px, scales with viewport width, max 25px */
    font-family: 'Kanit Bold', Arial, sans-serif;
    font-weight: 300;
    color: #e2e2e2;
    font-display: swap;
}

h4 {
    font-size: clamp(30px, 5vw, 50px); /* Minimum 30px, scales with viewport width, max 50px */
    font-family: 'Kanit Bold', Arial, sans-serif;
    font-weight: 400;
    text-align: center;
    margin-top: 80px;
    font-display: swap;
}

h5 {
    font-size: clamp(40px, 6vw, 70px); /* Minimum 40px, scales with viewport width, max 70px */
    font-family: 'Kanit Bold', Arial, sans-serif;
    font-weight: 800;
    text-align: center;
    margin-top: -20px;
    font-display: swap;
}

p {
    font-size: clamp(16px, 2vw, 20px); /* Minimum 16px, scales with viewport width, max 20px */
    font-family: 'Kanit Light', Arial, sans-serif;
    color: #e2e2e2;
    font-display: swap;
}

ul {
    font-size: clamp(16px, 2vw, 20px); /* Minimum 16px, scales with viewport width, max 20px */
    font-family: 'Kanit', Arial, sans-serif;
    color: #e2e2e2;
    font-display: swap;
}

  .site-nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10; /* Higher than the hero background if needed */
    background: rgba(0, 0, 0, 0.315); /* semi-transparent if desired */
    padding: 10px 50px
  }

  .site-nav-image img{
    height: 60px;
    width: auto;
    margin-top: 15%;
    padding: 0;
  }

  .site-nav ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .site-nav ul li {
    /* Additional styling for list items, if necessary */
    margin: 0 24px; /* example spacing between nav items */
  }

  /* New Styles for Responsive Navigation */

/* Hide the checkbox */
#menu-toggle {
  display: none;
}

/* Hide the hamburger icon on desktop */
.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #e2e2e2;
}

/* Mobile styles */
@media (max-width: 768px) {
  .site-nav {
    padding: 10px 20px;
  }
  
  /* Show the hamburger icon */
  .menu-icon {
    display: block;
  }
  
  /* Hide the navigation links by default on mobile */
  .site-nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; /* Places the menu directly below the nav */
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    padding: 1rem 0;
  }
  
  /* When the checkbox is checked, display the menu */
  #menu-toggle:checked ~ ul {
    display: flex;
  }
  
  /* Style nav links in mobile view */
  .site-nav ul li {
    margin: 1rem 0;
  }
}



  /* Hero Section Container */
.hero {
  margin-top: -100px; /* Pull the hero section up behind the nav bar */
  height: calc(90vh + 100px); /* Add the nav bar's height back into the total height */
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Background Image Styling */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/img/HomeHero.webp') center center/cover no-repeat;
  z-index: 1;
  /* Optional: add an overlay for better text contrast */
  /* background-color: rgba(0, 0, 0, 0.4); */
}

.contact-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* Covers the full viewport height */
  background: url('/img/HomeHero.webp') center center/cover no-repeat;
  z-index: 1; /* Behind content */
}

/* Hero Content Styling */
.hero-content {
  position: relative;
  z-index: 2; /* Place above the background image */
  padding: 20px;
}

.hero-content video {
  width: 100%;        /* Ensures the video scales with its container */
  max-width: 1000px;  /* Optionally, set a maximum width */
  height: auto;
  margin: 10px auto;  /* Center the video horizontally */
  display: block;
}

/* Call-to-Action Button Styling */
.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #930c0c; /* Use your brand color */
  font-size: clamp(2vw, 25px, 3vw);
  font-family: 'Pirulen', Arial, sans-serif;
  color:#0c0c0c;
  font-display: swap;
  border-radius: 25px;
  width: 70%;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #aa1c1c; /* A slightly different shade on hover */
  font-size: clamp(2vw, 25px, 3vw);
  font-family: 'Pirulen', Arial, sans-serif;
  color:#0c0c0c;
  font-display: swap;
  text-decoration: underline;
}

.cta-button2 {
  display: block;
  width: 50%;            /* Keep or adjust the width as you like */
  margin: 20px auto 0;   /* Top margin 20px, auto on left/right for centering */
  padding: 10px 20px;
  background-color: #930c0c;
  font-size: clamp(2vw, 25px, 3vw);
  font-family: 'Pirulen', Arial, sans-serif;
  color: #0c0c0c;
  font-display: swap;
  border-radius: 25px;
  transition: background-color 0.3s ease;
  text-align: center;    /* Ensure text in the button is centered */
}

.cta-button2:hover {
  background-color: #aa1c1c; /* A slightly different shade on hover */
  font-size: clamp(2vw, 25px, 3vw);
  font-family: 'Pirulen', Arial, sans-serif;
  color:#0c0c0c;
  font-display: swap;
  text-decoration: underline;
}

/* Footer Styles */
.site-footer {
  background-color: #161616; /* Dark background color */
  color: #e2e2e2;            /* Light text color for contrast */
  display: flex;
  flex-direction: column;    /* Stack items vertically */
  align-items: center;
  justify-content: center;
  padding: 1rem;             /* Some padding for spacing */
  text-align: center;        /* Center the text */
}

.site-footer p {
  margin: 0.25rem 0;         /* Small vertical spacing between lines */
}

.site-footer a {
  color: #930c0c;            /* Accent color for the link */
  text-decoration: underline;
}

.site-footer a:hover {
  color: #aa1c1c;            /* Slightly darker on hover */
  text-decoration: none;
}

  a {
    font-size: clamp(16px, 2vw, 20px); /* Minimum 16px, scales with viewport width, max 20px */
    font-family: 'Kanit Light', Arial, sans-serif;
    color:#e2e2e2;
    font-display: swap;
    text-decoration: none;
  }

  a:hover{
    font-size: clamp(16px, 2vw, 20px); /* Minimum 16px, scales with viewport width, max 20px */
    font-family: 'Kanit Light', Arial, sans-serif;
    color:#930c0c;
    font-display: swap;
    text-decoration: none;
  }




  /* ABOUT ME PAGE */

.about-me {
  background-image: url('/img/bg2.webp');
}

  /* Container for About Me Section */
.about-me-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;             /* Space between the image and text */
  padding: 2rem;
  max-width: 1280px;     /* Constrain width on large screens */
  margin: 0 auto;        /* Center container horizontally */
  width: 100%;
}

/* Profile Image Section */
.about-me-profile {
  position: relative;  /* Needed for absolute positioning of pseudo-element */
  display: inline-block; /* Wraps tightly around the image */
  padding-top: 25px;
  flex: 0 0 auto; /* Prevents the profile from growing */
}

.about-me-profile img {
  display: block;       /* Removes any inline spacing issues */
  position: relative;
  z-index: 2;           /* Ensure the image sits above the pseudo-element */
}

/* Pseudo-element for the offset border */
.about-me-profile::before {
  content: "";
  position: absolute;
  top: 5px;   /* Adjust this value to control how far up the border is offset */
  left: -20px;  /* Adjust this value to control how far left the border is offset */
  width: 100%;
  height: 90%;
  border: 3px solid #930c0c;  /* Change border width and color as needed */
  border-radius: 3%;
  z-index: 1;   /* Sits behind the image */
}

/* Details/Text Section */
.about-me-details {
  flex: 1;
  max-width: 35vw;  /* Adjust this value as needed */
  color: #e2e2e2;        /* Adjust text color to match your design */
  font-family: 'Kanit Light', Arial, sans-serif;
  font-size: clamp(16px, 2vw, 20px);
}

.about-me-socials {
  display: flex;
  flex-direction: row;
  justify-content: space-between; /* Evenly distribute space among icons */
  align-items: center;           /* Center the icons vertically if needed */
  width: 100%;                   /* Allow the container to use full width */
  margin-top: 5vh;              /* Adds some space above the icons */
}

.about-me-socials a {
  /* Remove max-width: 10px; */
  display: inline-flex;  /* or flex, if you need more control */
  align-items: center;
  justify-content: center;
  /* Optionally, add a width if you want the anchors to have a consistent size */
  /* width: 40px; */
}

.about-me-socials a img {
  width: 6vh;  /* Adjust size as needed */
  height: auto;
}

/* Responsive: Stack columns on small screens */
@media (max-width: 768px) {
  .about-me-container {
    flex-direction: column;
    text-align: center;
    padding: 1rem; /* Optional: reduce padding on mobile */
  }
  
  /* Make the details section use the full width and center its content */
  .about-me-details {
    width: 92%;
    max-width: 100%;
    text-align: center; /* Ensure text is centered */
    margin-right: 10px;
  }
  
  /* Adjust the socials container to center icons with a gap */
  .about-me-socials {
    display: flex;
    flex-direction: row;
    justify-content: center; /* Center the icons */
    align-items: center;
    gap: 1rem;             /* Even spacing between icons */
    margin-top: 5vh;       /* Adds space above the icons */
    /* Remove width: 100%; so it only takes up as much space as needed */
  }
  
  /* Constrain the profile image container */
  .about-me-profile {
    max-width: 300px; /* Adjust as needed */
    margin: 0 auto;
  }
  
  /* Ensure the image scales within its container */
  .about-me-profile img {
    width: 100%;
    height: auto;
  }
  
  /* Remove any remaining flex properties that might interfere */
  .about-me-profile,
  .about-me-details {
    flex: initial;
  }
}

/* About Me Features Section */
.about-me-features {
  padding: 4rem;
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
}

.about-me-features h1 {
  font-size: clamp(24px, 3vw, 35px);
  color: #930c0c;
  margin-bottom: 2rem;
}

/* Grid Container */
.about-me-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Creates 2 columns */
  grid-gap: 2rem 8rem;                        /* Gap between items */
}

/* Grid Items */
.about-me-grid-item {
  padding: 1rem;
  border-radius: 10%;
}

/* Grid Item Headings */
.about-me-grid-item h3 {
  font-family: 'Kanit Light', Arial, sans-serif;
  font-size: clamp(18px, 2.5vw, 28px);
  color: #e2e2e2;  /* Accent color (adjust if needed) */
  margin-bottom: 1rem;
}

/* Grid Item Images */
.about-me-grid-item img {
  width: 90%;
  height: auto;
  border-radius: 5px; /* Optional: rounds the corners of the images */
}

@media (max-width: 768px) {
  .about-me-grid {
    grid-template-columns: 1fr; /* Switch to one column on small screens */
  }
}

/* Final Section Overall */
.about-me-final {
  padding: 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.about-me-final h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #930c0c;
  font-size: clamp(24px, 3vw, 35px); /* Minimum 24px, scales with viewport width, max 35px */
  font-family: 'Pirulen', Arial, sans-serif;
  font-weight: 800;
  font-display: swap;
}

/* Two-column layout for the final section */
.about-me-final-container {
  display: grid;
  grid-template-columns: 1fr 1fr;  /* Two equal columns; adjust if needed */
  gap: 2rem;
}

/* Left Column: Experience */
.final-left {
  background: rgba(34, 34, 34, 0.61); /* Optional background for contrast */
  padding: 1rem;
  border-radius: 5px;
}

.final-left h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  color: #e2e2e2;
  margin-bottom: 1rem;
  font-family: 'Kanit Light', Arial, sans-serif;
  text-decoration: underline;
}

/* Right Column: Nested Two Rows */
.final-right {
  display: grid;
  grid-template-rows: auto auto;  /* Two rows with heights based on content */
  gap: 2rem;
  background: rgba(34, 34, 34, 0.61); /* Optional background */
  padding: 1rem;
  border-radius: 5px;
}

.final-right h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  color: #e2e2e2;
  margin-bottom: 1rem;
  font-family: 'Kanit Light', Arial, sans-serif;
  text-decoration: underline;
}

/* Optional styling for paragraphs within the final section */
.about-me-final p {
  font-family: 'Kanit Light', Arial, sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  color: #e2e2e2;
  line-height: 1.6;
}

/* Responsive: Stack columns on small screens */
@media (max-width: 768px) {
  .about-me-final-container {
    grid-template-columns: 1fr; /* Single column on small screens */
  }
}




/* Pro Projects Page Container */
.pro-projects {
  background-image: url(/img/bg3.webp);
}

.pro-projects2 {
  background-image: url(/img/bg4.webp);
}

/* Enable smooth scrolling for in-page links */
html {
  scroll-behavior: smooth;
}

/* Projects Navigation Container - Sticky */
.projects-nav {
  position: sticky;       /* Makes the nav stick to the viewport */
  top: 0;                 /* Sticks at the very top */
  z-index: 5;            /* Ensures it stays above the page content */
  background-color: #1a1a1aa2;  /* Matches your design */
  padding: 1rem;
}

/* Navigation List */
.projects-nav ul {
  display: flex;
  justify-content: space-evenly;
  overflow-x: auto;             /* Enable horizontal scrolling if needed */
  white-space: nowrap;          /* Prevent wrapping */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  margin: 0;
  padding: 0 1rem;              /* Optional horizontal padding */
  list-style: none;
}

/* Navigation List Items */
.projects-nav ul li {
  flex: 0 0 auto;               /* Prevent items from shrinking */
  margin-right: 1rem;           /* Space between items */
  text-decoration: underline;
}

/* Chevron Indicators */
.scroll-indicator {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #e2e2e2;
  pointer-events: none;         /* They’re visual cues only */
}

/* Left Chevron Position */
.scroll-indicator.left {
  left: 5px;                    /* Adjust as needed */
}

/* Right Chevron Position */
.scroll-indicator.right {
  right: 5px;                   /* Adjust as needed */
}

/* (Optional) Hide chevrons on larger screens */
@media (min-width: 769px) {
  .scroll-indicator {
    display: none;
  }
}

.pro-projects-page {
  padding: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  color: #e2e2e2;
  font-family: 'Kanit Light', Arial, sans-serif;
}

.pro-projects-page h1 {
  text-align: center;
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 2rem;
}

/* Project Container */
.project {
  margin-bottom: 4rem;
  padding-bottom: 2rem;
}

.project-header h2 {
  font-size: clamp(28px, 3vw, 40px);
  color: #930c0c;
  margin-bottom: 0.5rem;
  text-align: center;
}

.project-header p {
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: 1.5rem;
}

.project-header a {
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: 1.5rem;
  text-decoration: underline;
}

/* Project Section Block */
.project-section {
  margin-bottom: 0.5rem;
}

/* Two-Column Section */
.two-col-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.two-col-section .col {
  padding: 1rem;
  border-radius: 4px;
  text-align: center;
}

.two-col-section .col h3 {
  font-size: clamp(18px, 2.5vw, 28px);
  margin-bottom: 1.5rem;
  color: #e2e2e2;
}

.two-col-section .col img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* One-Column Section */
.one-col-section {
  padding: 1rem;
  border-radius: 4px;
  text-align: center;
}

.one-col-section h3 {
  font-size: clamp(18px, 2.5vw, 28px);
  margin-bottom: 1.5rem;
  color: #e2e2e2;
}

.one-col-section img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}



/* Contact Me Page */

/* Ensure the overall wrapper positions relative for absolute children */
.contact-page-wrapper {
  position: relative;
  min-height: 100vh; /* Ensure it takes at least full viewport height */
}

.contact-me {
  position: relative;  /* Create a new stacking context */
  z-index: 2;          /* Make sure content is above the background */
  padding: 2rem;
  /* Optionally, add a background to the container for readability */
  /* background: rgba(12, 12, 12, 0.85); */
}

/* Contact Container */
.contact-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Other styles remain unchanged */
.contact-container h1 {
  font-size: clamp(28px, 3vw, 40px);
  color: #930c0c;
  margin-bottom: 1rem;
}

.contact-container p {
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: 2rem;
}

.contact-container p a {
  color: #930c0c;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-container p a:hover {
  color: #aa1c1c;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: clamp(16px, 2vw, 20px); /* Minimum 16px, scales with viewport width, max 20px */
  font-family: 'Kanit Light', Arial, sans-serif;
  color: #e2e2e2;
  font-display: swap;
}

.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-size: clamp(14px, 1.5vw, 18px);
  color: #e2e2e2;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid #333;
  border-radius: 4px;
  background-color: #1a1a1a;
  outline: none;
  transition: border-color 0.3s ease;
  font-size: clamp(16px, 2vw, 20px); /* Minimum 16px, scales with viewport width, max 20px */
  font-family: 'Kanit Light', Arial, sans-serif;
  color: #e2e2e2;
  font-display: swap;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #930c0c;
}

/* Group container for the terms checkbox and label */
.terms-group {
  display: flex !important; 
  flex-direction: row !important;
  align-items: center !important; /* Vertically center the checkbox and text */
  gap: 0.5rem;         /* Space between the checkbox and label text */
  margin-top: 1rem;    /* Some top spacing from previous form fields */
  text-align: center;
}

/* Style the checkbox itself */
.terms-group input[type="checkbox"] {
  /* Modern browsers allow accent-color for quick color changes */
  accent-color: #930c0c;
  width: 1.3rem;
  height: 1.3rem;
  cursor: pointer;
  /* For older browsers, you might need a more advanced custom checkbox approach */
}

/* Style the label text */
.terms-group label {
  font-size: clamp(14px, 1.5vw, 18px);
  color: #e2e2e2;
}

/* Style the link inside the label */
.terms-group a {
  color: #930c0c;
  text-decoration: underline;
}

.terms-group a:hover {
  color: #930c0c;
  text-decoration: underline;
}

button[type="submit"] {
  align-self: center;
  padding: 0.75rem 2rem;
  font-size: clamp(16px, 2vw, 20px);
  background-color: #930c0c;
  border: none;
  border-radius: 4px;
  color: #0c0c0c;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #aa1c1c;
}

/* Responsive Adjustments (if needed) */
@media (max-width: 480px) {
  .contact-container {
    padding: 0 1rem;
  }
}



/* My Services Page Section */
.services {
  background: url('/img/service-bg.webp');
}

.my-services {
  padding: 2rem;
  color: #e2e2e2;
  font-family: 'Kanit Light', Arial, sans-serif;
}

/* Container to Center Content and Constrain Width */
.services-container {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

/* Page Title and Intro Paragraph */
.services-container h1 {
  font-size: clamp(32px, 4vw, 48px);
  color: #930c0c;
  margin-bottom: 1rem;
}

.services-container p {
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: 2rem;
}

/* Responsive Grid for Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* Service Card Styling */
.service-card {
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  text-align: center;
  backdrop-filter: blur(5px);
  border: #930c0c 1px solid;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* Service Card Image */
.service-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 1rem;
}

/* Service Card Image */
.service-card video {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 1rem;
}

/* Service Card Title */
.service-card h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  margin-bottom: 0.5rem;
  color: #930c0c;
}

/* Service Card Description */
.service-card p {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.5;
}

@font-face {
  font-family: "Pirulen";
  src: url("/fonts/Pirulen-Rg.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

/* Design Brief Page Container */
.design-brief-page {
  max-width: 800px; /* Constrain the width for readability */
  margin: 0 auto;
  padding: 1rem;
  color: #e2e2e2; /* Match your site’s text color */
}

.design-brief-page h1 {
  font-size: clamp(28px, 3vw, 40px);
  color: #930c0c; /* Accent color */
  margin-bottom: 1rem;
  text-align: center;
}

.design-brief-page p {
  margin-bottom: 2rem;
  text-align: center;
  font-size: clamp(16px, 2vw, 20px); /* Minimum 16px, scales with viewport width, max 20px */
  font-family: 'Kanit Light', Arial, sans-serif;
  color: #e2e2e2;
  font-display: swap;
}

/* Form Container */
.design-brief-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: clamp(16px, 2vw, 20px); /* Minimum 16px, scales with viewport width, max 20px */
  font-family: 'Kanit Light', Arial, sans-serif;
  color: #e2e2e2;
  font-display: swap;
}

/* Submit Button */
.design-brief-form button[type="submit"] {
  align-self: center;
  padding: 0.75rem 2rem;
  font-size: clamp(16px, 2vw, 20px);
  background-color: #930c0c;
  border: none;
  border-radius: 4px;
  color: #0c0c0c;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.design-brief-form button[type="submit"]:hover {
  background-color: #aa1c1c;
}

.form-group select {
  padding: 0.75rem;
  border: 1px solid #333;
  border-radius: 4px;
  font-size: clamp(16px, 2vw, 20px);
  background-color: #1a1a1a;
  color: #e2e2e2;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group select:focus {
  border-color: #930c0c;
}

/* Responsive Adjustments (Optional) */
@media (max-width: 480px) {
  .design-brief-page {
    margin: 1rem;
    padding: 0.5rem;
  }

  .design-brief-form {
    gap: 1rem;
  }
}

/* Container for the Privacy Policy content */
.privacy-policy-page {
  max-width: 1280px;           /* Constrain width for readability */
  margin: 2rem auto;          /* Center and add vertical spacing */
  padding: 1rem;              /* Inner padding */
  background-color: #0c0c0c;  /* Dark background (matches your site) */
  color: #e2e2e2;             /* Light text color */
  font-family: 'Kanit Light', Arial, sans-serif;
  line-height: 1.6;
}

/* Main Headings */
.privacy-policy-page h1,
.privacy-policy-page h2 {
  color: #930c0c;         /* Accent color for headings */
  text-align: center;     /* Center large headings */
  margin-bottom: 1rem;
  font-family: 'Pirulen', Arial, sans-serif; /* If you'd like a bold font for big headings */
}

/* Subheadings (h3, h4, etc.) */
.privacy-policy-page h3,
.privacy-policy-page h4 {
  color: #930c0c;         /* Same accent color */
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-family: 'Kanit Bold', Arial, sans-serif;
}

/* Paragraphs */
.privacy-policy-page p {
  margin-bottom: 1rem;
}

/* Lists */
.privacy-policy-page ul {
  margin-left: 2rem;       /* Indent lists */
  margin-bottom: 1rem;
  list-style: disc;        /* Standard bullet style */
}

.privacy-policy-page li {
  margin-bottom: 0.5rem;
}

/* Links */
.privacy-policy-page a {
  color: #930c0c;          /* Match accent color */
  text-decoration: underline;
}

.privacy-policy-page a:hover {
  color: #aa1c1c;          /* Slightly darker shade on hover */
  text-decoration: none;
}

.sub-text {
  font-size: clamp(12px, 1vw, 16px); /* Minimum 16px, scales with viewport width, max 20px */
  font-family: 'Kanit Light', Arial, sans-serif;
  color: #e2e2e2;
  font-display: swap;
  text-align: center;
}

.sub-text a {
  font-size: clamp(12px, 1vw, 16px); /* Minimum 16px, scales with viewport width, max 20px */
  font-family: 'Kanit Light', Arial, sans-serif;
  color: #930c0c;
  font-display: swap;
  text-align: center;
  text-decoration: underline;
}