/* Define CSS Variables for Colors */
:root {
  --primary-color: #ff6600;
  --secondary-color: #333;
  --hover-color: #e55a00;
}

/* General Link and Button Hover Effects */
a:hover, .t-link:hover, .button-class:hover {
  color: var(--primary-color);
  text-decoration: underline !important;
  transition: all 0.3s ease;
}

/* Animations */
.fade-in {
  animation: fadeIn 1s ease-in-out;
  will-change: opacity, transform;
}

/* Define CSS Variables for Colors */
:root {
  --primary-color: #ff6600;
  --secondary-color: #333;
  --hover-color: #e55a00;
}

/* General Link and Button Hover Effects */
a:hover, .t-link:hover, .button-class:hover {
  color: var(--primary-color);
  text-decoration: underline !important;
  transition: all 0.3s ease;
}

/* Custom Button Hover */
.custom-button:hover {
  background-color: var(--primary-color);
  transition: background-color 0.3s ease;
}

/* Typography */
h1, h2 {
  font-size: 2.5rem; /* Adjust as needed */
  line-height: 1.4;
}

p {
  line-height: 1.8;
}

/* Section Spacing */
section {
  padding: 60px 20px; /* Adjust top/bottom and left/right padding */
}

/* Button Styling */
.button-class {
  margin: 20px auto;
  padding: 12px 24px;
}

.cta-button {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-size: 1.2rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: var(--hover-color);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 1s ease-in-out;
  will-change: opacity, transform;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1, h2 {
    font-size: 1.8rem;
  }
  section {
    padding: 40px 10px;
  }
  .button-class {
    width: 100%;
    padding: 10px;
  }
  footer {
    padding: 20px 10px;
  }
}

/* Section Background */
.section-class {
  background: #f5f5f5; /* Fallback */
  background: linear-gradient(135deg, #f5f5f5, #ffffff);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Image Styling */
img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Prevent distortion */
}

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

/* Footer Styling */
footer {
  background-color: var(--secondary-color);
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

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

footer a:hover {
  text-decoration: underline;
}