 body {
     margin: 0;
     font-family: 'Canva Sans', Arial, sans-serif;
     line-height: 1.6;
     color: #333;
     background: #fff8f5;
     /* border-radius: 20px; */
     box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
     background-image: url("/Images/Background.jpg");
     background-size: cover;
     /* makes the image cover the whole screen */
     background-position: center;
     /* centers the image */
     /* background-repeat: no-repeat;  */
 }

 /* HEADER */
 header {
     background: #f6e2db;
     border-bottom: 1px solid #eee;
     padding: 10px 20px;
 }

 .nav-container {
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 .brand {
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .brand .logo {
     height: 60px;
     width: auto;
 }

 .brand .site-title {
     font-family: 'Abril Fatface', cursive;
     font-size: 1.8rem;
     font-weight: normal;
     color: #3a1f0d;
 }

 .nav-links {
     display: flex;
     gap: 20px;
 }

 .nav-links a {
     font-family: 'Alice', serif;
     text-decoration: none;
     color: #3a1f0d;
     font-weight: bold;
     font-size: 1rem;
     transition: color 0.2s;
 }

 .nav-links a:hover {
     color: #7a3d1e;
 }

 .menu-toggle {
     font-size: 1.5rem;
     cursor: pointer;
     color: #3a1f0d;
     display: none;
 }

 /* MAIN CONTAINER */
 main {
     max-width: auto;
     margin: auto;
     padding: 30px;
 }

 /* HEADINGS */
 h1 {
     font-size: 2.5rem;
     margin-bottom: 0.75em;
     color: #3a1f0d;
     text-align: center;
     font-family: 'Abril Fatface', cursive;
 }

 h2 {
     margin-top: 2em;
     margin-bottom: 0.75em;
     color: #f57f74;
     font-family: 'Abril Fatface', cursive;
     font-size: 1.8rem;
     text-align: center;
 }

 /* PARAGRAPHS */
 p {
     font-family: 'Alice', serif;
     font-size: 1.05rem;
     color: #555;
     line-height: 1.6;
     text-align: center;
     margin-bottom: 1.2em;
 }

 /* LINKS */
 a {
     color: #f57f74;
     text-decoration: none;
     font-weight: 500;
 }

 a:hover {
     text-decoration: underline;
 }

 /* ------------------ HERO SECTION ------------------ */
 .intro-hero {
     text-align: center;
     padding: 80px 20px;
     background: rgba(255, 255, 255, 0.7);
     border-radius: 15px;
     margin-bottom: 40px;
 }

 .intro-hero h2 {
     font-size: 2.2rem;
     color: #3a1f0d;
     margin-bottom: 20px;
 }

 .intro-hero p {
     font-size: 1.1rem;
     color: #555;
     max-width: 700px;
     margin: 0 auto 30px;
 }

 .cta-btn {
     display: inline-block;
     padding: 14px 28px;
     font-size: 1rem;
     color: #fff;
     background-color: #f57f74;
     border-radius: 10px;
     text-decoration: none;
     transition: background 0.3s ease;
 }

 .cta-btn:hover {
     background-color: #e85f4e;
 }

 .skin-types-list {
     max-width: 800px;
     margin: 40px auto;
     padding: 20px;
     background: rgba(255, 255, 255, 0.85);
     /* light transparent background */
     border-radius: 15px;
     text-align: center;
     box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
 }

 .skin-types-list h2 {
     font-family: 'Abril Fatface', cursive;
     font-size: 1.8rem;
     color: #f57f74;
     margin-bottom: 25px;
 }

 .skin-types-list ul {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .skin-types-list ul li {
     margin: 12px 0;
 }

 .skin-types-list ul li a {
     display: block;
     padding: 12px 18px;
     font-family: 'Canva Sans', Arial, sans-serif;
     font-size: 1rem;
     color: #fff;
     background-color: #f6a192;
     border-radius: 8px;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .skin-types-list ul li a:hover {
     background-color: #e57f74;
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
 }

 /* ------------------ SKIN TYPE BUTTONS ------------------ */
 .skin-type-buttons {
     display: flex;
     justify-content: center;
     flex-wrap: wrap;
     gap: 15px;
     margin: 40px 0;
 }

 .skin-type-buttons a {
     display: inline-block;
     padding: 14px 22px;
     font-size: 1rem;
     font-weight: 500;
     background-color: #f6a192;
     color: #fff;
     border-radius: 8px;
     text-decoration: none;
     transition: all 0.3s ease;
     text-align: center;
     min-width: 180px;
 }

 .skin-type-buttons a:hover {
     background-color: #e57f74;
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
 }

 /* ------------------ HOW IT WORKS ------------------ */
 .how-it-works {
     text-align: center;
     margin-bottom: 60px;
 }

 .how-it-works h2 {
     font-size: 1.9rem;
     color: #f57f74;
     margin-bottom: 40px;
 }

 .steps {
     display: flex;
     justify-content: center;
     flex-wrap: wrap;
     gap: 30px;
 }

 .step {
     max-width: 250px;
     background: rgba(255, 255, 255, 0.8);
     border-radius: 15px;
     padding: 25px 15px;
     text-align: center;
     box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s ease;
 }

 .step:hover {
     transform: translateY(-5px);
 }

 .step h4 {
     color: #3a1f0d;
     font-size: 1.3rem;
     margin-bottom: 12px;
 }

 .step p {
     font-size: 1rem;
     color: #555;
 }

 /* ------------------ RESPONSIVE ------------------ */
 @media (max-width: 1024px) {
     main {
         padding: 18px 14px;
         background-position: center top;
     }

     h1 {
         font-size: 2.2rem;
     }

     h2 {
         font-size: 1.6rem;
     }

     p {
         font-size: 1rem;
     }
 }

 @media (max-width: 768px) {
     main {
         padding: 16px 12px;
         background-position: top;
         background-size: cover;
     }

     h1 {
         font-size: 2rem;
     }

     h2 {
         font-size: 1.5rem;
     }

     p {
         font-size: 0.98rem;
     }

     .skin-type-buttons {
         flex-direction: column;
         align-items: center;
     }

     .steps {
         flex-direction: column;
         align-items: center;
     }

     .step {
         max-width: 300px;
     }

     .nav-container {
         flex-direction: column;
         width: 100%;
         position: relative;
     }

     .nav-links {
         flex-direction: column;
         align-items: center;
         gap: 15px;
         max-height: 0;
         overflow: hidden;
         padding: 0;
         margin-top: 10px;
         background: #f6e2db;
         transition: max-height 0.3s ease, padding 0.3s ease;
     }

     .nav-links.active {
         max-height: 400px;
         padding: 15px 20px;
     }

     .nav-links a {
         display: block;
         width: 100%;
         padding: 5px 0;
     }
 }

 @media (max-width: 480px) {
     main {
         background-position: top center;
         background-size: cover;
     }

     h1 {
         font-size: 1.7rem;
     }

     h2 {
         font-size: 1.3rem;
     }

     p {
         font-size: 0.95rem;
     }

     .skin-type-buttons a {
         width: 100%;
         min-width: unset;
     }

     .step {
         padding: 20px 15px;
     }
 }


 /* FOOTER */
 footer {
     background: #f6e2db;
     padding: 40px 20px 20px;
     color: #333;
     font-family: 'Canva Sans', Arial, sans-serif;
 }

 .footer-container {
     display: flex;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 40px;
     max-width: 1100px;
     margin: 0 auto;
     align-items: flex-start;
 }

 .footer-brand {
     flex: 1;
     min-width: 300px;
     text-align: center;
 }

 .footer-logo {
     height: 100px;
     margin-bottom: 10px;
 }

 .footer-brand h2 {
     font-family: 'Abril Fatface', cursive;
     font-size: 1.8rem;
     margin: 0;
     color: #000;
 }

 .footer-column {
     flex: 1;
     min-width: 180px;
 }

 .footer-column h3 {
     font-family: 'Abril Fatface', cursive;
     font-size: 1.2rem;
     margin-bottom: 12px;
     font-weight: normal;
 }

 .footer-column ul {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .footer-column ul li {
     margin: 6px 0;
 }

 .footer-column ul li a {
     text-decoration: none;
     color: #333;
     transition: color 0.2s;
 }

 .footer-column ul li a:hover {
     color: #7a3d1e;
 }

 .footer-divider {
     border: none;
     border-top: 2px dashed #333;
     margin: 25px 0;
 }

 .footer-bottom {
     text-align: center;
     font-size: 0.9rem;
     color: #555;
 }

 .footer-bottom a {
     color: #0073e6;
     text-decoration: none;
 }

 .footer-bottom a:hover {
     text-decoration: underline;
 }

 .skin-type-buttons {
     display: flex;
     justify-content: center;
     flex-wrap: wrap;
     gap: 15px;
 }

 .skin-type-buttons a {
     display: inline-block;
     padding: 12px 20px;
     font-size: 16px;
     background-color: #f6a192;
     color: #fff;
     border-radius: 8px;
     text-decoration: none;
     transition: background 0.3s ease;
 }

 .skin-type-buttons a:hover {
     background-color: #e57f74;
 }

 /* --- HEADER NAVIGATION (mobile) --- */
 @media (max-width: 768px) {
     .nav-container {
         display: flex;
         flex-direction: column;
         width: 100%;
         position: relative;
     }

     .brand {
         display: flex;
         justify-content: space-between;
         align-items: center;
         width: 100%;
     }

     .menu-toggle {
         display: block;
         cursor: pointer;
         font-size: 24px;
         color: #3a1f0d;
         z-index: 10;
     }

     .nav-links {
         position: relative;
         width: 100%;
         background: #f6e2db;
         flex-direction: column;
         align-items: center;
         gap: 15px;
         max-height: 0;
         overflow: hidden;
         transition: max-height 0.3s ease, padding 0.3s ease;
         text-align: center;
         padding: 0;
         box-sizing: border-box;
         margin-top: 10px;
     }

     .nav-links.active {
         max-height: 400px;
         padding: 15px 20px;
     }

     .nav-links a {
         display: block;
         width: 100%;
         padding: 5px 0;
         color: #3a1f0d;
         text-decoration: none;
     }
 }

 /* Footer Mobie */
 @media (max-width: 768px) {
     .footer-container {
         flex-direction: column;
         text-align: center;
         align-items: center;
         gap: 25px;
     }

     .footer-brand {
         text-align: center;
         margin-bottom: 20px;
     }

     .footer-column {
         width: 100%;
         margin-bottom: 20px;
     }

     .footer-column h3 {
         margin-bottom: 10px;
     }

     .footer-column ul {
         display: flex;
         flex-direction: column;
         gap: 10px;
     }

     .footer-divider {
         width: 80%;
         margin: 20px auto;
     }

     .footer-bottom {
         font-size: 0.85rem;
         color: #555;
     }
 }