:root {
  /* Triadic Color Scheme */
  --primary-color: #d83f87;
  --secondary-color: #44318d;
  --tertiary-color: #3f87d8;
  
  /* Shade variations */
  --primary-dark: #b8266c;
  --primary-light: #e77dae;
  --secondary-dark: #352569;
  --secondary-light: #6e5ac1;
  --tertiary-dark: #2969b1;
  --tertiary-light: #75aae4;
  
  /* Neutral colors */
  --dark: #252525;
  --medium-dark: #444444;
  --medium: #777777;
  --medium-light: #bbbbbb;
  --light: #f5f5f5;
  
  /* UI colors */
  --success: #2ecc71;
  --warning: #f39c12;
  --danger: #e74c3c;
  --info: #3498db;
  
  /* Typography */
  --heading-font: 'Manrope', sans-serif;
  --body-font: 'Rubik', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.14);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.16);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ===== BASE STYLES ===== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--medium-dark);
  background-color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: 2.5rem;
  position: relative;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: var(--space-md);
  color: var(--medium-dark);
}

a {
  color: var(--tertiary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--tertiary-dark);
  text-decoration: none;
}

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

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: var(--space-md) auto 0;
  border-radius: var(--radius-sm);
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: -25px auto var(--space-xl);
  color: var(--medium);
  font-size: 1.1rem;
}

/* ===== BUTTONS ===== */
.btn, 
button, 
input[type="submit"] {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--heading-font);
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background-color: var(--primary-color);
  color: white !important;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before, 
button::before, 
input[type="submit"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform var(--transition-slow);
  z-index: -1;
}

.btn:hover, 
button:hover, 
input[type="submit"]:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-lg);
  background-color: var(--primary-dark);
}

.btn:hover::before, 
button:hover::before, 
input[type="submit"]:hover::before {
  transform: translateX(100%);
}

.btn:active, 
button:active, 
input[type="submit"]:active {
  transform: translateY(1px);
  box-shadow: var(--shadow-sm);
}

.btn-outline-primary {
  background-color: transparent;
  color: var(--primary-color) !important;
  border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white !important;
}

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

.btn-secondary:hover {
  background-color: var(--secondary-dark);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
  transition: all var(--transition-medium);
  padding: 0.75rem 0;
}
@media (max-width: 768px) {
  .header{
    padding-top: 0px;
    padding-bottom: 0px;
  }
}

.header.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(255, 255, 255, 0.98);
}

.navbar-brand img {
  height: 60px;
  transition: height var(--transition-medium);
}

.header.scrolled .navbar-brand img {
  height: 50px;
}

.navbar-nav {
  gap: 1rem;
}

.nav-link {
  position: relative;
  font-weight: 500;
  color: var(--dark) !important;
  padding: 0.5rem 0 !important;
  margin: 0 0.75rem;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-medium);
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.nav-link:hover::after {
  width: 100%;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
  box-shadow: none !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 0;
  margin-top: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: var(--space-xl);
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 1s forwards 0.5s;
  margin: 0 auto;
}

.hero h1 {
  color: white;
  font-size: 4rem;
  margin-bottom: var(--space-lg);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero p {
  color: white;
  font-size: 1.5rem;
  margin-bottom: var(--space-xl);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== PROCESS SECTION ===== */
.process-section {
  padding: var(--space-xl) 0;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('image/texture-background.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.05;
  z-index: 0;
}

.process-steps {
  position: relative;
  z-index: 1;
}

.process-card {
  height: 100%;
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: transform var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--space-lg);
}

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

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.process-card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: var(--space-lg);
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-content h3 {
  color: var(--secondary-color);
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: var(--space-sm);
}

.card-content h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: var(--radius-sm);
}

/* ===== PROJECTS SECTION ===== */
.projects-section {
  padding: var(--space-xl) 0;
  background-color: var(--light);
  position: relative;
}

.projects-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 63, 141, 0.05) 0%, rgba(68, 49, 141, 0.05) 100%);
  z-index: 0;
}

.project-card {
  height: 100%;
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

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

.project-card .card-image {
  height: 250px;
}

.project-card .card-content {
  padding: var(--space-lg);
  text-align: center;
}

.project-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  color: var(--secondary-color);
}

/* ===== RESOURCES SECTION ===== */
.resources-section {
  padding: var(--space-xl) 0;
  background-color: white;
  position: relative;
}

.resources-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('image/paper-texture.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.06;
  z-index: 0;
}

.resources-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.resource-card {
  background-color: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--space-lg);
  transition: all var(--transition-medium);
  border-left: 4px solid var(--tertiary-color);
}

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

.resource-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  color: var(--tertiary-dark);
}

.resource-card h3 a {
  color: var(--tertiary-dark);
  transition: color var(--transition-fast);
}

.resource-card h3 a:hover {
  color: var(--primary-color);
}

.resource-card p {
  color: var(--medium);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ===== WORKSHOPS SECTION ===== */
.workshops-section {
  padding: var(--space-xl) 0;
  background-color: var(--light);
  position: relative;
}

.workshop-card {
  height: 100%;
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--space-lg);
}

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

.workshop-card .card-image {
  width: 100%;
  height: 300px;
}

.workshop-card .card-content {
  padding: var(--space-lg);
  text-align: center;
}

.workshop-card h3 {
  color: var(--secondary-color);
  margin-bottom: var(--space-md);
}

.workshop-details {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--medium-light);
}

.workshop-details p {
  margin-bottom: var(--space-sm);
}

/* ===== WEBINARS SECTION ===== */
.webinars-section {
  padding: var(--space-xl) 0;
  background-color: white;
  position: relative;
}

.webinar-card {
  height: 100%;
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.webinar-card .card-image {
  width: 100%;
  height: 200px;
}

.webinar-card .card-content {
  padding: var(--space-lg);
  text-align: center;
  flex-grow: 1;
}

.webinar-card h3 {
  color: var(--tertiary-dark);
  margin-bottom: var(--space-md);
}

.webinar-card p strong {
  color: var(--secondary-color);
}

/* ===== SUCCESS STORIES SECTION ===== */
.success-stories-section {
  padding: var(--space-xl) 0;
  background-color: var(--light);
  position: relative;
}

.success-stories-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(63, 135, 216, 0.05) 0%, rgba(216, 63, 135, 0.05) 100%);
  z-index: 0;
}

.testimonials-carousel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.testimonial-card {
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-lg);
  display: flex;
  gap: var(--space-lg);
  transition: all var(--transition-medium);
  flex-direction: column;
}

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

.testimonial-image {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}

.testimonial-image img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--primary-light);
  box-shadow: var(--shadow-md);
}

.testimonial-content {
  flex-grow: 1;
}

.testimonial-content h3 {
  color: var(--secondary-color);
  margin-bottom: var(--space-xs);
}

.testimonial-position {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.testimonial-text {
  font-style: italic;
  color: var(--medium-dark);
  position: relative;
  padding-left: var(--space-lg);
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: var(--primary-light);
  font-family: Georgia, serif;
  line-height: 1;
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
  padding: var(--space-xl) 0;
  background-color: white;
  position: relative;
}

.partners-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition-medium);
}

.partner-logo:hover {
  transform: translateY(-5px);
}

.partner-logo img {
  width: 180px;
  height: 100px;
  object-fit: contain;
  margin-bottom: var(--space-md);
  filter: grayscale(1);
  opacity: 0.7;
  transition: all var(--transition-medium);
}

.partner-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.partner-logo p {
  font-weight: 500;
  color: var(--medium);
  margin-bottom: 0;
}

/* ===== CUSTOMER STORIES SECTION ===== */
.customer-stories-section {
  padding: var(--space-xl) 0;
  background-color: var(--light);
  position: relative;
}

.accordion-item {
  border: none;
  margin-bottom: var(--space-md);
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.accordion-button {
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--secondary-color);
  background-color: white;
  padding: var(--space-lg);
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: white;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d83f87'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: var(--space-lg);
  background-color: white;
}

.story-content {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.story-image {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.story-text {
  flex-grow: 1;
}

.story-text p:last-child {
  margin-bottom: 0;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: var(--space-xl) 0;
  background-color: white;
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('image/map-background.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

.contact-container {
  position: relative;
  z-index: 1;
}

.contact-info {
  background-color: var(--light);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  height: 100%;
}

.contact-info h3 {
  color: var(--secondary-color);
  margin-bottom: var(--space-lg);
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.contact-info ul li {
  margin-bottom: var(--space-md);
  display: flex;
  align-items: flex-start;
}

.contact-info ul li i {
  margin-right: var(--space-md);
  color: var(--primary-color);
  font-size: 1.2rem;
}

.office-hours {
  margin-bottom: var(--space-lg);
}

.office-hours h4 {
  color: var(--tertiary-dark);
  margin-bottom: var(--space-sm);
  font-size: 1.2rem;
}

.office-hours p {
  margin-bottom: var(--space-xs);
}

.contact-image {
  margin-top: var(--space-lg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-form {
  background-color: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  height: 100%;
}

.contact-form h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-lg);
}

.form-label {
  font-weight: 500;
  color: var(--secondary-dark);
  margin-bottom: var(--space-xs);
}

.form-control, .form-select {
  padding: 0.75rem;
  border: 1px solid var(--medium-light);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.form-control:focus, .form-select:focus {
  border-color: var(--tertiary-color);
  box-shadow: 0 0 0 0.25rem rgba(63, 135, 216, 0.15);
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-check-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(216, 63, 135, 0.15);
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--secondary-dark);
  padding: var(--space-xl) 0 var(--space-md);
  color: white;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('image/retro-pattern.jpg');
  background-size: cover;
  opacity: 0.05;
  z-index: 0;
}

.footer .row {
  position: relative;
  z-index: 1;
}

.footer-brand {
  margin-bottom: var(--space-lg);
}

.footer-brand img {
  margin-bottom: var(--space-md);
}

.footer-brand p {
  color: var(--medium-light);
  margin-bottom: var(--space-md);
}

.footer h4 {
  color: white;
  margin-bottom: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: var(--radius-sm);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: var(--medium-light);
  transition: color var(--transition-fast);
  display: inline-block;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary-light);
  transition: width var(--transition-medium);
}

.footer-links a:hover {
  color: white;
}

.footer-links a:hover::after {
  width: 100%;
}

.social-links {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.social-links a {
  color: var(--medium-light);
  transition: color var(--transition-fast);
}

.social-links a:hover {
  color: white;
}

.certifications {
  margin-top: var(--space-lg);
}

.certifications p {
  color: var(--medium-light);
  margin-bottom: var(--space-xs);
}

.footer-bottom {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: var(--medium-light);
  margin-bottom: 0;
}

/* ===== SUCCESS PAGE ===== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl) 0;
}

.success-content {
  max-width: 600px;
  background-color: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.success-content h1 {
  color: var(--success);
  margin-bottom: var(--space-lg);
}

.success-content p {
  margin-bottom: var(--space-lg);
}

.success-icon {
  font-size: 5rem;
  color: var(--success);
  margin-bottom: var(--space-lg);
}

/* ===== PRIVACY & TERMS PAGES ===== */
.privacy-page, .terms-page {
  padding-top: 100px;
  padding-bottom: var(--space-xl);
}

.privacy-content, .terms-content {
  background-color: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.privacy-content h1, .terms-content h1 {
  color: var(--secondary-color);
  margin-bottom: var(--space-xl);
}

.privacy-content h2, .terms-content h2 {
  color: var(--primary-color);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-lg);
  font-size: 1.8rem;
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(34, 34, 34, 0.95);
  color: white;
  z-index: 9999;
  padding: var(--space-md);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content p {
  margin: 0;
  color: white;
  flex: 1;
}

#acceptCookies {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

#acceptCookies:hover {
  background-color: var(--primary-dark);
}

/* ===== ABOUT PAGE ===== */
.about-page {
  padding-top: 100px;
  padding-bottom: var(--space-xl);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1199.98px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
  
  .hero h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 991.98px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero p {
    font-size: 1.25rem;
  }
  
  .story-content {
    flex-direction: column;
    align-items: center;
  }
  
  .story-image {
    margin-bottom: var(--space-md);
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .section-title {
    margin-bottom: var(--space-lg);
  }
  
  .section-description {
    margin-bottom: var(--space-lg);
  }
  
  .testimonial-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .testimonial-image {
    margin-bottom: var(--space-md);
  }
  
  .testimonial-text {
    padding-left: 0;
  }
  
  .testimonial-text::before {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .contact-info {
    margin-bottom: var(--space-lg);
  }
  
  .partners-container {
    gap: var(--space-md);
  }
  
  .partner-logo {
    width: 150px;
  }
  
  .footer {
    text-align: center;
  }
  
  .footer h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .resources-container {
    grid-template-columns: 1fr;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.floating {
  animation: float 3s ease-in-out infinite;
}

.pulsing {
  animation: pulse 2s ease-in-out infinite;
}

/* ===== 3D EFFECTS ===== */
.btn, 
button, 
input[type="submit"],
.card-image img,
.testimonial-image img,
.partner-logo img {
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.process-card, 
.project-card, 
.workshop-card, 
.webinar-card,
.resource-card,
.testimonial-card,
.contact-form,
.contact-info {
  transform: perspective(1000px);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.project-card:hover, 
.workshop-card:hover, 
.webinar-card:hover {
  transform: perspective(1000px) translateY(-5px) rotateX(2deg) rotateY(2deg);
}

.process-card:hover {
  transform: perspective(1000px) translateY(-10px) rotateX(2deg) rotateY(2deg);
}

.resource-card:hover {
  transform: perspective(1000px) translateY(-5px) rotateX(1deg) rotateY(2deg);
}

.testimonial-card:hover {
  transform: perspective(1000px) translateY(-5px) rotateX(1deg) rotateY(1deg);
}

html,body{
  overflow-x: hidden;
}

/* Иконка гамбургера в закрытом состоянии (по умолчанию и с классом collapsed) */
.navbar-toggler .navbar-toggler-icon,
.navbar-toggler.collapsed .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

/* Иконка крестика в открытом состоянии (когда aria-expanded="true") */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m6 6l18 18M6 24L24 6'/%3e%3c/svg%3e");
}