/* Base Styles */
:root {
  --primary-color: #000000;
  --secondary-color: #333333;
  --accent-color: #666666;
  --background-color: #ffffff;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --dark-gray: #888888;
  --text-color: #333333;
  --link-color: #000000;
  --link-hover-color: #666666;
  --border-color: #dddddd;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --card-hover-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  --transition-speed: 0.3s;
  --font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --container-padding: 20px;
  --section-spacing: 80px;
  --section-spacing-mobile: 40px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%; /* Base font size for rem units */
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.menu-open {
  overflow: hidden;
}

main {
  flex: 1;
}

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

a {
  color: var(--link-color);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

a:hover {
  color: var(--link-hover-color);
}

ul {
  list-style: none;
}

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

/* Typography responsive scaling */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.7rem);
}

p {
  margin-bottom: 1rem;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 50px);
}

.section-header h2 {
  color: var(--primary-color);
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.section-header h2:after {
  content: "";
  position: absolute;
  width: clamp(40px, 10vw, 80px);
  height: 3px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.section-header p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--secondary-color);
  max-width: 600px;
  margin: 0 auto;
}

/* Header Styles */
header {
  background-color: var(--background-color);
  box-shadow: 0 2px 10px var(--shadow-color);
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
}

.logo {
  margin-right: auto;
}

.logo h1 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--primary-color);
}

nav {
  margin-left: auto;
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: clamp(15px, 3vw, 30px);
}

nav ul li a {
  font-weight: 500;
  padding-bottom: 5px;
  position: relative;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

nav ul li a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 0;
  transition: width var(--transition-speed) ease;
}

nav ul li a:hover:after,
nav ul li a.active:after {
  width: 100%;
}

nav ul li a.active {
  font-weight: 600;
}

/* Enhanced Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--light-gray);
  justify-content: center;
  align-items: center;
  transition: all var(--transition-speed) ease;
  position: relative;
  z-index: 1001;
}

.menu-toggle:hover {
  background-color: var(--medium-gray);
}

/* Hero Carousel Section */
.hero-carousel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #f8f8f8, var(--light-gray));
  padding: 0;
  height: clamp(400px, 70vh, 500px);
}

.carousel-container {
  position: relative;
  height: 100%;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 10%);
  opacity: 0;
  transition: opacity 0.5s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-content {
  flex: 1;
  max-width: 50%;
  padding-right: clamp(20px, 5vw, 40px);
}

.slide-content h1 {
  margin-bottom: clamp(10px, 3vw, 20px);
  color: var(--primary-color);
  line-height: 1.2;
}

.slide-content p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--secondary-color);
  margin-bottom: clamp(20px, 5vw, 30px);
}

.slide-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-logos-collage {
  position: relative;
  width: clamp(200px, 40vw, 300px);
  height: clamp(200px, 40vw, 300px);
}

.app-logos-collage .app-logo {
  position: absolute;
  width: clamp(120px, 25vw, 180px);
  height: clamp(120px, 25vw, 180px);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
  transition: transform 0.5s ease;
}

.app-logos-collage .caledge-logo {
  top: 0;
  left: 0;
  transform: rotate(-5deg);
}

.app-logos-collage .notex-logo {
  bottom: 0;
  right: 0;
  transform: rotate(5deg);
}

.large-logo {
  width: clamp(150px, 30vw, 250px) !important;
  height: clamp(150px, 30vw, 250px) !important;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
}

.carousel-nav {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 2vw, 20px);
}

.carousel-prev,
.carousel-next {
  background-color: var(--background-color);
  border: none;
  width: clamp(30px, 8vw, 40px);
  height: clamp(30px, 8vw, 40px);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
  background-color: var(--primary-color);
  color: white;
}

.carousel-indicators {
  display: flex;
  gap: 10px;
}

.indicator {
  width: clamp(8px, 2vw, 12px);
  height: clamp(8px, 2vw, 12px);
  border-radius: 50%;
  background-color: var(--medium-gray);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* Featured App Section */
.featured-app {
  padding: var(--section-spacing) 0;
  background-color: var(--background-color);
}

.featured-app-content {
  display: flex;
  align-items: center;
  gap: clamp(30px, 5vw, 60px);
  background-color: var(--light-gray);
  border-radius: 16px;
  padding: clamp(20px, 5vw, 40px);
  box-shadow: var(--card-shadow);
}

.featured-app-image {
  flex-shrink: 0;
  position: relative;
}

.featured-app-image .app-logo {
  width: clamp(120px, 25vw, 200px);
  height: clamp(120px, 25vw, 200px);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.featured-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background-color: var(--primary-color);
  color: white;
  padding: clamp(5px, 2vw, 8px) clamp(10px, 3vw, 15px);
  border-radius: 20px;
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.featured-app-info {
  flex-grow: 1;
}

.featured-app-info h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.app-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.stars {
  color: #ffd700;
}

.app-features {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 3vw, 20px);
  margin: 25px 0;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--background-color);
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-3px);
}

.feature i {
  color: var(--primary-color);
}

.featured-app-cta {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.featured-app-cta .btn-primary {
  max-width: 200px;
}

.featured-app-cta .secondary-links {
  display: flex;
  gap: 10px;
}

/* App Cards Section */
.app-cards {
  padding: var(--section-spacing) 0;
  background-color: var(--light-gray);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 5vw, 40px);
  justify-content: center;
  padding: 20px 0;
}

/* Enhanced Card Design */
.card {
  background-color: var(--background-color);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  padding: clamp(20px, 5vw, 40px) clamp(15px, 3vw, 30px);
  width: 100%;
  max-width: 400px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--card-hover-shadow);
}

.card:hover:before {
  opacity: 1;
}

.card-icon {
  margin-bottom: clamp(20px, 5vw, 30px);
  text-align: center;
  height: clamp(80px, 15vw, 120px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Fix for app logos */
.app-logo {
  width: clamp(80px, 15vw, 120px);
  height: clamp(80px, 15vw, 120px);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform var(--transition-speed) ease;
  display: inline-block;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

/* Updated SVG paths to use proper relative paths */
.caledge-logo {
  background-image: url("../Assets/caledge-icon.svg");
  position: relative;
}

.caledge-logo::after {
  content: "\f1ec"; /* Calculator icon as fallback */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 3.5rem;
  color: var(--primary-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.caledge-logo.fallback::after {
  opacity: 1;
}

.notex-logo {
  background-image: url("../Assets/notex-icon.svg");
  position: relative;
}

.notex-logo::after {
  content: "\f249"; /* Note icon as fallback */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 3.5rem;
  color: var(--primary-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.notex-logo.fallback::after {
  opacity: 1;
}

.card:hover .app-logo {
  transform: scale(1.05);
}

.card h3 {
  margin-bottom: 20px;
  color: var(--primary-color);
  text-align: center;
  font-weight: 600;
}

.card p {
  margin-bottom: 25px;
  color: var(--secondary-color);
  text-align: center;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  line-height: 1.7;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
}

.card-features span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
}

.card-features i {
  color: var(--primary-color);
  width: 20px;
  text-align: center;
}

/* Enhanced Button Styles */
.card-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.secondary-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: clamp(10px, 2vw, 12px) clamp(15px, 3vw, 24px);
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all var(--transition-speed) ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 2px solid var(--primary-color);
  text-align: center;
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  cursor: pointer;
}

.btn-primary {
  width: 100%;
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  padding: clamp(8px, 1.5vw, 10px) clamp(12px, 2vw, 16px);
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background-color: #222;
  border-color: #222;
  color: white;
}

.btn-secondary:hover {
  background-color: var(--light-gray);
  color: var(--primary-color);
}

.btn:active {
  transform: translateY(0);
}

/* Newsletter Section */
.newsletter {
  padding: var(--section-spacing) 0;
  background-color: var(--background-color);
}

.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(30px, 5vw, 60px);
  background-color: var(--light-gray);
  border-radius: 16px;
  padding: clamp(20px, 5vw, 40px);
  box-shadow: var(--card-shadow);
}

.newsletter-info {
  flex: 1;
}

.newsletter-info h2 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.newsletter-info p {
  color: var(--secondary-color);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
}

.newsletter-form {
  flex: 1;
}

.form-group {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.form-group input {
  flex: 1;
  padding: clamp(10px, 2vw, 12px) clamp(12px, 2.5vw, 15px);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.form-disclaimer {
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  color: var(--dark-gray);
}

/* Hero section */
.hero {
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--background-color) 100%);
  padding: clamp(60px, 10vw, 100px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.02) 0%, transparent 70%);
}

.hero h1 {
  margin-bottom: 20px;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.hero h1::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(40px, 10vw, 80px);
  height: 4px;
  background-color: var(--primary-color);
}

.hero p {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: var(--secondary-color);
  max-width: 700px;
  margin: 0 auto;
  margin-top: 30px;
}

/* Info Page Styles */
.info-section {
  padding: var(--section-spacing) 0;
  background-color: var(--background-color);
}

.info-card {
  background-color: var(--light-gray);
  border-radius: 16px;
  padding: clamp(25px, 5vw, 40px);
  margin-bottom: clamp(20px, 5vw, 40px);
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-hover-shadow);
}

.info-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(60px, 10vw, 80px);
  height: clamp(60px, 10vw, 80px);
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  margin: 0 auto clamp(20px, 5vw, 30px);
  font-size: clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.info-card h2 {
  text-align: center;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.info-card p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.7;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 20px;
}

.values-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.values-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: var(--background-color);
  padding: clamp(10px, 3vw, 15px) clamp(15px, 3vw, 20px);
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.values-list li:hover {
  transform: translateX(10px);
}

.values-list li i {
  color: var(--primary-color);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

/* Contact Section Styles */
.contact-section {
  padding: var(--section-spacing) 0;
  background-color: var(--light-gray);
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 30px);
  justify-content: center;
}

.contact-card {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  background-color: var(--background-color);
  padding: clamp(20px, 4vw, 30px);
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-hover-shadow);
}

.contact-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(50px, 8vw, 70px);
  height: clamp(50px, 8vw, 70px);
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  margin: 0 auto clamp(15px, 3vw, 20px);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

.contact-card h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  margin-bottom: 15px;
  color: var(--primary-color);
}

.contact-card p {
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.contact-card a {
  display: inline-block;
  font-weight: 500;
}

.contact-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.contact-social .social-icon {
  width: clamp(35px, 6vw, 40px);
  height: clamp(35px, 6vw, 40px);
  background-color: var(--light-gray);
  color: var(--primary-color);
}

/* Feedback Form Styles */
.feedback-section {
  padding: var(--section-spacing) 0;
  background-color: var(--background-color);
}

.feedback-form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--light-gray);
  padding: clamp(25px, 5vw, 40px);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
}

.feedback-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.feedback-form .form-group {
  flex: 1;
  margin-bottom: 20px;
}

.feedback-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--primary-color);
  font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
  width: 100%;
  padding: clamp(10px, 2vw, 12px) clamp(12px, 2.5vw, 15px);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.feedback-form input:focus,
.feedback-form select:focus,
.feedback-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.feedback-form button {
  margin-top: 10px;
}

/* App Showcase Styles */
.app-showcase {
  margin-top: clamp(25px, 5vw, 40px);
}

.showcase-app {
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--background-color) 100%);
  border-radius: 20px;
  margin-bottom: clamp(25px, 5vw, 40px);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.showcase-app:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.showcase-app-content {
  display: flex;
  padding: clamp(30px, 6vw, 50px);
  position: relative;
}

.showcase-app-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
  pointer-events: none;
}

.showcase-app-image {
  flex-shrink: 0;
  position: relative;
  margin-right: clamp(30px, 6vw, 60px);
  z-index: 1;
}

.showcase-app-image .app-logo {
  width: clamp(120px, 25vw, 200px);
  height: clamp(120px, 25vw, 200px);
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
  transition: transform 0.5s ease;
}

.showcase-app:hover .app-logo {
  transform: rotate(5deg) scale(1.05);
}

.showcase-app-info {
  flex-grow: 1;
  z-index: 1;
}

.showcase-app-info h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.showcase-app-info h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.showcase-app-actions {
  margin-top: clamp(25px, 5vw, 35px);
}

.showcase-app-actions .btn {
  min-width: clamp(150px, 30vw, 200px);
  padding: clamp(12px, 2.5vw, 15px) clamp(20px, 4vw, 30px);
  font-size: clamp(1rem, 2vw, 1.1rem);
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #444 100%);
  transition: all 0.3s ease;
}

.showcase-app-actions .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Enhanced Footer */
footer {
  background-color: var(--primary-color);
  color: white;
  padding: clamp(40px, 8vw, 60px) 0 clamp(15px, 3vw, 20px);
  margin-top: auto;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(25px, 5vw, 40px);
  margin-bottom: clamp(25px, 5vw, 40px);
}

.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-logo h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 15px;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(25px, 5vw, 40px);
}

.footer-section {
  flex: 1;
  min-width: 150px;
}

.footer-section h3 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h3:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: white;
  bottom: 0;
  left: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
  font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.footer-section ul li a:hover {
  color: white;
}

.footer-social {
  flex: 1;
  min-width: 250px;
}

.footer-social h3 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-social h3:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: white;
  bottom: 0;
  left: 0;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(35px, 6vw, 40px);
  height: clamp(35px, 6vw, 40px);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: white;
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Specific social icon hover colors */
.social-icon:hover .fa-github {
  color: #333;
}

.social-icon:hover .fa-linkedin-in {
  color: #0077b5;
}

.social-icon:hover .fa-twitter {
  color: #1da1f2;
}

.social-icon:hover .fa-discord {
  color: #7289da;
}

.social-icon:hover .fa-instagram {
  color: #e1306c;
}

/* Contact page social icons */
.contact-social .social-icon {
  background-color: var(--light-gray);
  color: var(--primary-color);
}

.contact-social .social-icon:hover {
  background-color: var(--primary-color);
  color: white;
}

.contact-social .social-icon:hover .fa-github,
.contact-social .social-icon:hover .fa-linkedin-in,
.contact-social .social-icon:hover .fa-twitter,
.contact-social .social-icon:hover .fa-discord,
.contact-social .social-icon:hover .fa-instagram {
  color: white;
}

.footer-social p {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Enhanced Container */
.enhanced-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: clamp(25px, 5vw, 40px);
  background-color: var(--background-color);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.enhanced-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
  opacity: 0.7;
}

.enhanced-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Enhanced Card */
.enhanced-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: linear-gradient(
    to bottom,
    var(--background-color) 0%,
    var(--background-color) 95%,
    var(--light-gray) 100%
  );
}

.enhanced-card:hover {
  transform: translateY(-15px) scale(1.02);
}

.enhanced-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.enhanced-card:hover::after {
  opacity: 1;
}

/* Thank You Page Styles */
.thank-you-section {
  padding: clamp(60px, 10vw, 100px) 0;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--background-color);
  padding: clamp(30px, 6vw, 50px);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
}

.thank-you-icon {
  font-size: clamp(3rem, 6vw, 5rem);
  color: #28a745;
  margin-bottom: 30px;
}

.thank-you-content h1 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.thank-you-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.thank-you-actions {
  margin-top: clamp(25px, 5vw, 40px);
}

.thank-you-actions .btn {
  min-width: clamp(150px, 30vw, 200px);
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
  :root {
    --section-spacing: 60px;
  }

  .card {
    max-width: 350px;
  }

  .app-details .container {
    flex-direction: column;
  }

  .app-card {
    max-width: 100%;
    position: static;
  }

  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-info h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .featured-app-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .featured-app-cta {
    align-items: center;
  }

  .featured-app-info h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 992px) {
  :root {
    --section-spacing: 50px;
  }

  .card-container {
    gap: 30px;
  }

  .app-logo {
    width: 100px;
    height: 100px;
  }

  .card-icon {
    height: 100px;
  }

  .app-hero-content {
    flex-direction: column;
    text-align: center;
  }

  .app-hero-text h1 {
    font-size: 2.2rem;
  }

  .slide-content {
    max-width: 100%;
    padding-right: 0;
    text-align: center;
  }

  .carousel-slide {
    flex-direction: column;
    justify-content: center;
    padding: 0 5%;
  }

  .slide-image {
    margin-top: 30px;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .footer-links {
    gap: 20px;
  }

  .showcase-app-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .showcase-app-image {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .showcase-app-info h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .feedback-form .form-row {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 768px) {
  :root {
    --section-spacing: 40px;
    --container-padding: 15px;
  }

  /* Enhanced Mobile Menu */
  .menu-toggle {
    display: flex;
  }

  nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--background-color);
    box-shadow: -5px 0 15px var(--shadow-color);
    transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    z-index: 1000;
    padding-top: 70px;
    overflow-y: auto;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    padding: 0;
  }

  nav ul li {
    margin: 0;
    border-bottom: 1px solid var(--border-color);
  }

  nav ul li:last-child {
    border-bottom: none;
  }

  nav ul li a {
    display: block;
    padding: 15px 30px;
    font-size: 1.1rem;
    transition: all var(--transition-speed) ease;
  }

  nav ul li a:hover {
    background-color: var(--light-gray);
  }

  nav ul li a:after {
    display: none;
  }

  /* Overlay for mobile menu */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-speed) ease, visibility var(--transition-speed) ease;
  }

  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .hero-carousel {
    height: 600px;
  }

  .app-features {
    justify-content: center;
  }

  .form-group {
    flex-direction: column;
  }

  .form-group .btn {
    width: 100%;
    margin-top: 10px;
  }

  .enhanced-container {
    padding: 30px 20px;
  }

  .contact-card {
    min-width: 100%;
  }
}

@media (max-width: 576px) {
  :root {
    --section-spacing: 30px;
    --container-padding: 10px;
  }

  .hero-carousel {
    height: 550px;
  }

  .featured-app-content {
    padding: 30px 20px;
  }

  .secondary-links {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .card-icon {
    height: 90px;
    margin-bottom: 20px;
  }

  .card h3 {
    font-size: 1.5rem;
  }

  .card p {
    font-size: 1rem;
  }

  .menu-toggle {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .newsletter-content {
    padding: 30px 20px;
  }

  .newsletter-info h2 {
    font-size: 1.8rem;
  }

  .showcase-app-content {
    padding: 30px 20px;
  }

  .feature {
    width: 100%;
  }
}

@media (max-width: 400px) {
  .card {
    padding: 25px 15px;
  }

  .hero-carousel {
    height: 500px;
  }

  .featured-badge {
    padding: 5px 10px;
    font-size: 0.8rem;
  }

  .social-icon {
    width: 35px;
    height: 35px;
  }
}

/* Print styles */
@media print {
  header,
  footer,
  .newsletter,
  .feedback-section {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
    background: #fff;
  }

  .container {
    width: 100%;
    max-width: none;
    padding: 0;
    margin: 0;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .document-content {
    box-shadow: none;
    padding: 0;
    margin: 0;
  }

  h1,
  h2,
  h3 {
    page-break-after: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
}

/* Accessibility enhancements */
:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* High contrast mode adjustments */
@media (forced-colors: active) {
  .btn,
  .feature,
  .card,
  .info-card {
    border: 1px solid;
  }

  .btn:focus,
  a:focus {
    outline: 2px solid;
  }
}

/* New Company Sections */

/* About Us Section */
.about-us {
  padding: var(--section-spacing) 0;
  background-color: var(--background-color);
}

.about-content {
  margin-top: 40px;
}

.about-story {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.story-text {
  flex: 2;
}

.story-text h3 {
  color: var(--primary-color);
  margin-bottom: 25px;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
}

.story-text p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.7;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.story-stats {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  background-color: var(--light-gray);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.stat-label {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  color: var(--secondary-color);
  font-weight: 500;
}

/* Mission & Vision Section */
.mission-vision {
  padding: var(--section-spacing) 0;
  background-color: var(--light-gray);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.mission-card,
.vision-card,
.values-card {
  background-color: var(--background-color);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover,
.vision-card:hover,
.values-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-hover-shadow);
}

.mission-card .card-icon,
.vision-card .card-icon,
.values-card .card-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.mission-card h3,
.vision-card h3,
.values-card h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

.mission-card p,
.vision-card p,
.values-card p {
  color: var(--secondary-color);
  line-height: 1.6;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
}

/* Company Timeline Section */
.company-timeline {
  padding: var(--section-spacing) 0;
  background-color: var(--background-color);
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 50px auto 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--primary-color);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-date {
  flex: 0 0 120px;
  text-align: center;
  font-weight: 700;
  color: var(--primary-color);
  font-size: clamp(1rem, 2vw, 1.2rem);
  background-color: var(--light-gray);
  padding: 10px 15px;
  border-radius: 25px;
  border: 2px solid var(--primary-color);
}

.timeline-content {
  flex: 1;
  background-color: var(--background-color);
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  margin: 0 30px;
  position: relative;
}

.timeline-content::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
  left: -20px;
  border-right-color: var(--background-color);
}

.timeline-item:nth-child(even) .timeline-content::before {
  right: -20px;
  border-left-color: var(--background-color);
}

.timeline-content h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
}

.timeline-content p {
  color: var(--secondary-color);
  line-height: 1.6;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
}

/* Team Section */
.team-section {
  padding: var(--section-spacing) 0;
  background-color: var(--light-gray);
}

.team-grid {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.team-member {
  background-color: var(--background-color);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  text-align: center;
  max-width: 400px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-hover-shadow);
}

.member-avatar {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.member-info h4 {
  color: var(--primary-color);
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  margin-bottom: 8px;
}

.member-role {
  color: var(--accent-color);
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.1rem);
  margin-bottom: 20px !important;
}

.member-bio {
  color: var(--secondary-color);
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.member-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.member-social a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
}

/* Why Choose Us Section */
.why-choose-us {
  padding: var(--section-spacing) 0;
  background-color: var(--light-gray);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.feature-item h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
}

.feature-item p {
  color: var(--secondary-color);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
}

/* Contact Information Section */
.contact-info {
  padding: var(--section-spacing) 0;
  background-color: var(--background-color);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.contact-method {
  background-color: var(--background-color);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-hover-shadow);
}

.contact-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.contact-method h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
}

.contact-method p {
  color: var(--secondary-color);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
}

.contact-link {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--secondary-color);
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
  .about-story {
    flex-direction: column;
    gap: 40px;
  }

  .story-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    flex-direction: column !important;
    align-items: flex-start;
    padding-left: 60px;
  }

  .timeline-date {
    position: absolute;
    left: 0;
    top: 0;
    flex: none;
    width: auto;
    min-width: 80px;
  }

  .timeline-content {
    margin: 0;
    margin-top: 50px;
    width: 100%;
  }

  .timeline-content::before {
    display: none;
  }

  .mission-vision-grid,
  .features-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Enhanced Features Section */
.enhanced-features {
  padding: var(--section-spacing) 0;
  background: linear-gradient(135deg, var(--background-color) 0%, var(--light-gray) 100%);
}

.features-showcase {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 50px;
}

.feature-highlight {
  display: flex;
  align-items: center;
  gap: 50px;
  background-color: var(--background-color);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-highlight:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-hover-shadow);
}

.feature-highlight:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-visual {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-content {
  flex: 1;
}

.feature-content h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
}

.feature-content p {
  color: var(--secondary-color);
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: clamp(1rem, 2vw, 1.1rem);
}

.feature-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--secondary-color);
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
}

.feature-benefits i {
  color: #28a745;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .feature-highlight {
    flex-direction: column !important;
    text-align: center;
    gap: 30px;
  }

  .features-showcase {
    gap: 40px;
  }
}

/* Beta Message Styling */
.message {
  background: linear-gradient(135deg, var(--light-gray), #fdfdfd);
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  border-radius: 16px;
  padding: clamp(20px, 4vw, 30px);
  margin: 40px auto;
  max-width: 800px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.message:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-hover-shadow);
}

.message h2 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.message p {
  color: var(--secondary-color);
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.6;
}

.message a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.message a:hover {
  color: var(--link-hover-color);
}
