:root {
  --primary-color: rgb(123, 104, 238);
  --secondary-color: rgb(75, 0, 130);
  --accent-color: rgb(128, 0, 128);
  --text-light: #ffffff;
  --text-dark: #1a1a1a;
  --bg-dark: #0f0f0f;
  --bg-secondary: #1a1a1a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.container-fluid {
  width: 100%;
  padding-left: 65px;
  padding-right: 65px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 15px;
}

.col-lg-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
  padding: 0 15px;
}

.col-lg-12 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 15px;
}

@media (max-width: 991px) {
  .col-lg-11, .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.header-section {
	padding-top: 45px;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 99;
	padding-left: 65px;
	padding-right: 65px;
}
.header-section.header-normal {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background: var(--bg-secondary);
	padding-top: 0;
}
.header-section.header-normal .logo {
	padding: 42px 0;
}
.header-section.header-normal .nav-menu .mainmenu ul li a {
	padding: 42px 0;
}
.header-section.header-normal .nav-menu .mainmenu ul li a:after {
	bottom: 37px;
}
.header-section.header-normal .nav-menu .mainmenu ul li:hover .dropdown {
	top: 109px;
}
.header-section.header-normal .nav-menu .mainmenu ul li .dropdown {
	top: 130px;
}
.header-section.header-normal .nav-menu .mainmenu ul li .dropdown li a {
	padding: 15px 24px;
}
.logo {
	float: left;
}
.logo a {
	display: inline-block;
}
.logo img {
  max-height: 50px;
  width: auto;
}
.nav-menu {
	text-align: center;
}
.nav-menu .mainmenu {
	display: inline-block;
}
.nav-menu .mainmenu ul li {
	display: inline-block;
	list-style: none;
	margin-right: 48px;
	position: relative;
}
.nav-menu .mainmenu ul li:last-child {
	margin-right: 0;
}
.nav-menu .mainmenu ul li.active a {
	color: var(--primary-color);
}
.nav-menu .mainmenu ul li.active a:after {
	opacity: 1;
}
.nav-menu .mainmenu ul li a {
	color: #ffffff;
	font-size: 17px;
	text-transform: uppercase;
	font-weight: 500;
	line-height: 30px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	display: block;
	font-family: "Roboto", sans-serif;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
  text-decoration: none;
}
.nav-menu .mainmenu ul li a:after {
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 100%;
	height: 3px;
	background: var(--primary-color);
	content: "";
	opacity: 0;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.nav-menu .mainmenu ul li:hover .dropdown {
	opacity: 1;
	visibility: visible;
	top: 42px;
}
.nav-menu .mainmenu ul li:hover>a {
	color: var(--primary-color);
}
.nav-menu .mainmenu ul li:hover>a:after {
	opacity: 1;
}
.nav-menu .mainmenu ul li .dropdown {
	position: absolute;
	left: 0;
	top: 72px;
	width: 185px;
	background: var(--primary-color);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	z-index: 99;
}
.nav-menu .mainmenu ul li .dropdown li {
	display: block;
	margin-right: 0;
}
.nav-menu .mainmenu ul li .dropdown li a {
	text-align: left;
	text-transform: capitalize;
	padding: 12px 22px;
	color: #ffffff;
}
.nav-menu .mainmenu ul li .dropdown li a:hover {
	color: var(--text-dark);
}
.nav-menu .mainmenu ul li .dropdown li a:hover:after {
	display: none;
}

.site-blocks-cover {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 50%, var(--accent-color) 100%);
  overflow: hidden;
}

.site-blocks-cover, .site-blocks-cover > .container > .row {
  height: calc(80vh);
  min-height: 400px;
}

.site-blocks-cover .align-self-center {
  align-self: center;
}

.site-blocks-cover h1 {
  font-size: 4rem;
  color: var(--text-light);
  font-weight: 900;
  margin-bottom: 20px;
}

@media (max-width: 991.98px) {
  .site-blocks-cover h1 {
    font-size: 2rem;
  }
}

.site-blocks-cover p {
  color: var(--text-light);
  font-size: 1.3rem;
}

.site-blocks-cover p a {
  color: #fd7e14;
  text-decoration: none;
}

.typed-words {
  color: #ffdd40;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.slide-one-item {
  position: relative;
  z-index: 1;
}

.slide-one-item .owl-nav {
  position: relative;
  position: absolute;
  bottom: -90px;
  left: 50%;
  transform: translateX(-50%);
}

.slide-one-item .owl-nav .owl-prev, .slide-one-item .owl-nav .owl-next {
  position: relative;
  display: inline-block;
  padding: 20px;
  font-size: 30px;
  color: #000;
}

.slide-one-item .owl-nav .owl-prev.disabled, .slide-one-item .owl-nav .owl-next.disabled {
  opacity: .2;
}

.img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.about-instructor-section {
  background-color: var(--bg-dark);
  padding: 80px 0;
  color: var(--text-light);
}

.instructor-content-wrapper {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .instructor-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

.instructor-photo-column {
  display: flex;
  justify-content: center;
}

.instructor-image {
  width: 300px;
  height: 300px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(123, 104, 238, 0.3);
  border: 3px solid var(--primary-color);
}

.instructor-text-column {
  font-family: Arial, sans-serif;
  text-align: left;
}

.instructor-text-column h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 30px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
}

.instructor-text-column p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #e0e0e0;
}

.instructor-text-column strong {
  color: var(--primary-color);
  font-weight: 600;
}

@media (max-width: 480px) {
  .instructor-image {
    width: 250px;
    height: 250px;
  }
  
  .instructor-text-column h2 {
    font-size: 2rem;
  }
  
  .instructor-text-column p {
    font-size: 1rem;
  }
}

.course-overview-section {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-dark) 100%);
  padding: 90px 0;
  color: var(--text-light);
}

.course-overview-wrapper {
  max-width: 60%;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 768px) {
  .course-overview-wrapper {
    max-width: 90%;
  }
}

.course-overview-wrapper h2 {
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 50px;
  font-weight: 700;
  text-align: center;
}

.course-details-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.course-detail-card {
  background: rgba(123, 104, 238, 0.1);
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(123, 104, 238, 0.4);
}

.course-detail-card h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
}

.course-detail-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e0e0e0;
  margin: 0;
  font-family: Arial, sans-serif;
}

.course-detail-card strong {
  color: var(--accent-color);
  font-weight: 600;
}

@media (max-width: 480px) {
  .course-overview-wrapper h2 {
    font-size: 2.2rem;
  }
  
  .course-detail-card {
    padding: 20px;
  }
  
  .course-detail-card h3 {
    font-size: 1.2rem;
  }
  
  .course-detail-card p {
    font-size: 1rem;
  }
}

.course-benefits-section {
  background: var(--bg-dark);
  padding: 90px 0;
  color: var(--text-light);
}

.benefits-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.benefits-wrapper h2 {
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 700;
}

.benefits-subtitle {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.benefits-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 992px) {
  .benefits-cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .benefits-cards-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.benefit-card {
  background: rgba(123, 104, 238, 0.08);
  border: 1px solid rgba(123, 104, 238, 0.2);
  border-radius: 15px;
  padding: 35px 25px;
  text-align: left;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(123, 104, 238, 0.25);
}

.benefit-number {
  position: absolute;
  top: -15px;
  left: 25px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-light);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(123, 104, 238, 0.4);
}

.benefit-card h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  margin-top: 10px;
  font-weight: 600;
  line-height: 1.3;
}

.benefit-card p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.7;
  margin: 0;
  text-indent: 0;
  font-family: Arial, sans-serif;
}

@media (max-width: 480px) {
  .benefits-wrapper h2 {
    font-size: 2.2rem;
  }
  
  .benefits-subtitle {
    font-size: 1rem;
  }
  
  .benefit-card {
    padding: 30px 20px;
  }
  
  .benefit-card h3 {
    font-size: 1.2rem;
  }
  
  .benefit-card p {
    font-size: 0.95rem;
  }
}

.footer-section {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--text-dark) 100%);
  padding: 60px 0 20px;
  color: var(--text-light);
}

.footer-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .footer-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.company-details h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.company-details h4, .quick-navigation h4, .newsletter-box h4 {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.company-details p, .newsletter-box p {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 15px;
}

.kontakt-info p {
  margin-bottom: 10px;
  color: #cccccc;
}

.quick-navigation ul {
  list-style: none;
  padding: 0;
}

.quick-navigation ul li {
  margin-bottom: 8px;
}

.quick-navigation ul li a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.quick-navigation ul li a:hover {
  color: var(--primary-color);
}

.newsletter-signup {
  display: flex;
  margin-top: 15px;
}

.newsletter-signup input {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 5px 0 0 5px;
  background: var(--bg-dark);
  color: var(--text-light);
  font-size: 14px;
}

.newsletter-signup button {
  padding: 12px 20px;
  border: none;
  border-radius: 0 5px 5px 0;
  background: var(--primary-color);
  color: var(--text-light);
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}

.newsletter-signup button:hover {
  background: var(--secondary-color);
}

.footer-bottom-area {
  border-top: 1px solid #333;
  padding-top: 20px;
}

.copyright-text {
  text-align: center;
}

.copyright-text p {
  color: #888;
  margin: 0;
}

@media (max-width: 768px) {
  .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .header-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .nav-menu .mainmenu ul li {
    margin-right: 20px;
  }
  
  .nav-menu .mainmenu ul li a {
    font-size: 15px;
  }
  
  .site-blocks-cover h1 {
    font-size: 2.5rem;
  }
  
  .site-blocks-cover p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .nav-menu .mainmenu ul li {
    display: block;
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .nav-menu {
    text-align: left;
  }
  
  .site-blocks-cover h1 {
    font-size: 2rem;
  }
  
  .site-blocks-cover p {
    font-size: 1rem;
  }
}









.pricing-plans-section {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-secondary) 100%);
  padding: 100px 0;
  color: var(--text-light);
}

.pricing-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.pricing-wrapper h2 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 700;
}

.pricing-subtitle {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .pricing-cards-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(123, 104, 238, 0.3);
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(123, 104, 238, 0.3);
}

.pricing-card.recommended {
  border: 3px solid var(--primary-color);
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(123, 104, 238, 0.4);
}

.recommended-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: var(--text-light);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.plan-header h3 {
  font-size: 1.8rem;
  color: var(--text-light);
  margin-bottom: 20px;
  font-weight: 600;
}

.price-display {
  margin-bottom: 15px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.currency {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 500;
}

.price {
  font-size: 3.5rem;
  color: var(--primary-color);
  font-weight: 900;
  line-height: 1;
}

.period {
  font-size: 1rem;
  color: #cccccc;
  font-weight: 400;
}

.plan-description {
  font-size: 1rem;
  color: #cccccc;
  margin-bottom: 30px;
  font-style: italic;
}

.plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  text-align: left;
}

.plan-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  padding-left: 25px;
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.5;
}

.plan-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.plan-features li:last-child {
  border-bottom: none;
}

.buy-button {
  width: 100%;
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.basic-btn {
  background: linear-gradient(135deg, #6c757d, #495057);
  color: var(--text-light);
}

.basic-btn:hover {
  background: linear-gradient(135deg, #495057, #343a40);
  transform: translateY(-2px);
}

.standard-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-light);
}

.standard-btn:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  transform: translateY(-2px);
}

.premium-btn {
  background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
  color: var(--text-light);
}

.premium-btn:hover {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  transform: translateY(-2px);
}

.early-discount {
  font-size: 0.9rem;
  color: #ffd700;
  font-weight: 500;
  margin: 0;
}

.pricing-bottom-note {
  text-align: center;
  margin-top: 40px;
}

.pricing-bottom-note p {
  font-size: 0.9rem;
  color: #999;
  margin: 0;
}

@media (max-width: 480px) {
  .pricing-wrapper h2 {
    font-size: 2.2rem;
  }
  
  .pricing-subtitle {
    font-size: 1rem;
  }
  
  .pricing-card {
    padding: 30px 20px;
  }
  
  .price {
    font-size: 2.8rem;
  }
  
  .pricing-card.recommended {
    transform: none;
  }
}













.comparison-section {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-dark) 100%);
  padding: 100px 0;
  color: var(--text-light);
}

.comparison-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.comparison-wrapper h2 {
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 700;
}

.comparison-subtitle {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.comparison-table-container {
  overflow-x: auto;
  margin-bottom: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #2a2a2a;
  font-family: Arial, sans-serif;
  border-radius: 15px;
  overflow: hidden;
}

.comparison-table thead {
  background: linear-gradient(135deg, var(--bg-secondary), #333333);
}

.comparison-table th {
  padding: 20px 15px;
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
  border-right: 1px solid #444444;
}

.comparison-table th:last-child {
  border-right: none;
}

.feature-column {
  background: #333333;
  color: var(--text-light);
  text-align: left !important;
  width: 25%;
}

.our-course-column {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  font-weight: 700;
  width: 25%;
}

.competitor-column {
  background: #666666;
  color: var(--text-light);
  width: 25%;
}

.comparison-table tbody tr {
  border-bottom: 1px solid #444444;
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.comparison-table td {
  padding: 18px 15px;
  text-align: center;
  font-size: 1rem;
  border-right: 1px solid #444444;
  vertical-align: middle;
}

.comparison-table td:last-child {
  border-right: none;
}

.feature-name {
  background: #333333;
  color: var(--text-light);
  text-align: left !important;
  font-weight: 500;
  border-right: 2px solid #555555;
}

.our-course-data {
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.8), rgba(32, 201, 151, 0.8));
  color: white;
  font-weight: 600;
  border-right: 2px solid #555555;
}

.competitor-data {
  background: rgba(102, 102, 102, 0.8);
  color: #e0e0e0;
}

.comparison-table tbody tr:hover .our-course-data {
  background: linear-gradient(135deg, #28a745, #20c997);
  transform: scale(1.02);
  transition: all 0.3s ease;
}

.comparison-table tbody tr:hover .competitor-data {
  background: rgba(102, 102, 102, 0.9);
}

.comparison-bottom-note {
  text-align: center;
  margin-top: 30px;
}

.comparison-bottom-note p {
  font-size: 0.9rem;
  color: #999999;
  font-style: italic;
  margin: 0;
}

@media (max-width: 768px) {
  .comparison-wrapper h2 {
    font-size: 2.2rem;
  }
  
  .comparison-subtitle {
    font-size: 1rem;
  }
  
  .comparison-table {
    font-size: 0.9rem;
  }
  
  .comparison-table th {
    padding: 15px 10px;
    font-size: 1rem;
  }
  
  .comparison-table td {
    padding: 12px 8px;
    font-size: 0.9rem;
  }
  
  .feature-column, .our-course-column, .competitor-column {
    width: auto;
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  .comparison-table {
    font-size: 0.8rem;
  }
  
  .comparison-table th {
    padding: 12px 6px;
    font-size: 0.9rem;
  }
  
  .comparison-table td {
    padding: 10px 6px;
    font-size: 0.8rem;
  }
}


















/* Course Program Specific Styles */

.course-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.625rem;
    height: 250px;
}

.course-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.course-image-container:hover .image-overlay {
    transform: translateY(0);
}

.course-modules {
    width: 80%;
    margin: 0 auto;
}

.module-item {
    border: 1px solid #e9ecef;
    border-radius: 0.625rem;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.module-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.module-header {
    padding: 1.5rem 2rem;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s ease;
}

.module-header:hover {
    background-color: #f8f9fa;
}

.module-header .d-flex {
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.module-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    background-color: var(--secondary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.module-title {
    color: var(--text-color);
    margin: 0;
    flex-grow: 1;
    font-size: 1.375rem;
    font-weight: 700;
}

.toggle-icon {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.module-header:hover .toggle-icon {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.module-content {
    display: none;
    padding: 0 2rem 2rem 2rem;
    border-top: 1px solid #e9ecef;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

.module-topics {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.module-topics li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-color);
}

.module-topics li::before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
    position: absolute;
    left: 0.5rem;
    top: 0;
}

.module-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
}

.feature-badge {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .course-modules {
        width: 90%;
    }
    
    .module-header {
        padding: 1.25rem 1.5rem;
    }
    
    .module-content {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .module-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        margin-right: 1rem;
    }
    
    .module-title {
        font-size: 1.25rem;
    }
    
    .course-image-container {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .course-modules {
        width: 100%;
    }
    
    .module-header {
        padding: 1rem 1.25rem;
    }
    
    .module-content {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
    
    .module-number {
        width: 35px;
        height: 35px;
        font-size: 1.125rem;
        margin-right: 0.75rem;
    }
    
    .module-title {
        font-size: 1.125rem;
    }
    
    .toggle-icon {
        width: 25px;
        height: 25px;
        font-size: 1.25rem;
    }
    
    .module-topics li {
        padding-left: 1.5rem;
    }
    
    .feature-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .course-image-container {
        height: 180px;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .module-header .d-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .module-header .d-flex > div:first-child {
        display: flex;
        align-items: center;
        width: 100%;
    }
    
    .toggle-icon {
        margin-left: auto;
    }
    
    .course-image-container {
        height: 160px;
    }
    
    .image-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .image-overlay h5 {
        font-size: 1rem;
    }
}








  /* Services Page Specific Styles */

.services-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c6183 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0 60px;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
}

.services-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-card:hover .service-card-icon {
    transform: scale(1.1);
    background: var(--primary-color);
    color: white;
}

.service-card-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-title {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.375rem;
}

.service-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.service-price {
    background: var(--bg-secondary);
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.price-period {
    color: #6c757d;
    font-size: 0.875rem;
}

.btn-service {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 0.625rem;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-service:hover {
    background: #2c6183;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(58, 124, 165, 0.3);
}

.featured-service {
    position: relative;
    border: 2px solid var(--primary-color);
}

.featured-service::after {
    content: "POLECANY";
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.services-cta {
    background: linear-gradient(135deg, var(--secondary-color), #f0f7ff);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 4rem;
}

.services-cta h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-cta p {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.process-step {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-title {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-description {
    color: #6c757d;
    line-height: 1.6;
}

/* Course Program Specific Styles */

.course-modules {
    width: 80%;
    margin: 0 auto;
}

.module-item {
    border: 1px solid #e9ecef;
    border-radius: 0.625rem;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.module-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.module-header {
    padding: 1.5rem 2rem;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s ease;
}

.module-header:hover {
    background-color: #f8f9fa;
}

.module-header .d-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.module-header .d-flex > div:first-child {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.module-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    background-color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.module-title {
    color: var(--text-dark);
    margin: 0;
    flex-grow: 1;
    font-size: 1.375rem;
    font-weight: 700;
}

.toggle-icon {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    flex-shrink: 0;
}

.module-header:hover .toggle-icon {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.module-content {
    display: none;
    padding: 0 2rem 2rem 2rem;
    border-top: 1px solid #e9ecef;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

.module-topics {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.module-topics li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.module-topics li::before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
    position: absolute;
    left: 0.5rem;
    top: 0;
}

.module-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
}

.feature-badge {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Utility Classes */
.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.text-center {
    text-align: center;
}

.text-white {
    color: white;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-3,
.col-lg-4,
.col-lg-8,
.col-lg-10 {
    padding: 0 15px;
}

.col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col-lg-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

/* Responsive Design */
@media (max-width: 992px) {
    .course-modules {
        width: 90%;
    }
    
    .module-header {
        padding: 1.25rem 1.5rem;
    }
    
    .module-content {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .module-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        margin-right: 1rem;
    }
    
    .module-title {
        font-size: 1.25rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .services-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .col-lg-3,
    .col-lg-4,
    .col-lg-8,
    .col-lg-10 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .course-modules {
        width: 100%;
    }
    
    .module-header {
        padding: 1rem 1.25rem;
    }
    
    .module-content {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
    
    .module-number {
        width: 35px;
        height: 35px;
        font-size: 1.125rem;
        margin-right: 0.75rem;
    }
    
    .module-title {
        font-size: 1.125rem;
    }
    
    .toggle-icon {
        width: 25px;
        height: 25px;
        font-size: 1.25rem;
    }
    
    .module-topics li {
        padding-left: 1.5rem;
    }
    
    .feature-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
    
    .services-cta {
        padding: 2rem 1.5rem;
    }
    
    .process-step {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .module-header .d-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .module-header .d-flex > div:first-child {
        display: flex;
        align-items: center;
        width: 100%;
    }
    
    .toggle-icon {
        margin-left: auto;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .price-amount {
        font-size: 1.75rem;
    }
    
    .btn-service {
        padding: 0.75rem 1.5rem;
    }
    
    .services-hero {
        padding: 80px 0 40px;
    }
    
    .py-5 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}
















/* Contacts Page Specific Styles */

.contact-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c6183 50%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="5" cy="5" r="1.5" fill="rgba(255,255,255,0.05)"/><circle cx="25" cy="25" r="1.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-pattern)"/></svg>');
    opacity: 0.4;
}

.contact-hero-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 2rem;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-info-card {
    background-color: white;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), #f0f7ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.contact-info-card h4 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-info-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-hours {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

.contact-form-wrapper {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--secondary-color), transparent);
    border-radius: 0 1.5rem 0 150px;
    opacity: 0.3;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form-header h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-form-header p {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-form {
    position: relative;
    z-index: 2;
}

.form-row {
    margin-bottom: 2rem;
}

.form-group {
    width: 100%;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control, .form-textarea {
    width: 100%;
    border: 2px solid #e9ecef;
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    color: var(--text-dark);
    font-family: inherit;
}

.form-control:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(123, 104, 238, 0.15);
    background-color: white;
    transform: translateY(-2px);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.checkbox-group {
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #6c757d;
    gap: 12px;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c6183 100%);
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 0.75rem;
    color: white;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(123, 104, 238, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(123, 104, 238, 0.4);
    background: linear-gradient(135deg, #2c6183 0%, var(--accent-color) 100%);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
}

.additional-contact {
    padding: 80px 0;
    background: white;
}

.additional-contact h3 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.additional-contact p {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-method {
    background: linear-gradient(135deg, var(--secondary-color), #f0f7ff);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(123, 104, 238, 0.1);
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(123, 104, 238, 0.2);
}

.method-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-method h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-method p {
    color: #6c757d;
    font-size: 0.95rem;
    margin: 0;
}

/* Utility Classes for Contact Page */
.text-center {
    text-align: center;
}

.text-white {
    color: white;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
}

.justify-content-center {
    justify-content: center;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-4,
.col-lg-8 {
    padding: 0 15px;
}

.col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .col-lg-4,
    .col-lg-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .contact-form-wrapper {
        padding: 2.5rem;
        margin-top: 2rem;
    }
    
    .contact-info-card {
        margin-bottom: 2rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 0 60px;
    }
    
    .contact-hero-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-info-card {
        padding: 2rem 1.5rem;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .additional-contact {
        padding: 60px 0;
    }
    
    .additional-contact h3 {
        font-size: 1.7rem;
    }
    
    .contact-method {
        padding: 1.5rem;
    }
    
    .method-icon {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        padding: 80px 0 40px;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-form-header {
        margin-bottom: 2rem;
    }
    
    .contact-form-header h2 {
        font-size: 1.6rem;
    }
    
    .form-row {
        margin-bottom: 1.5rem;
    }
    
    .btn-submit {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .additional-contact {
        padding: 40px 0;
    }
    
    .contact-method {
        padding: 1.2rem;
    }
}

/* Form Validation Styles */
.form-control.error,
.form-textarea.error {
    border-color: #dc3545;
    background-color: #fff5f5;
}

.form-control.success,
.form-textarea.success {
    border-color: #28a745;
    background-color: #f0fff4;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
}

.success-message {
    color: #28a745;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
}















   
        .privacy-hero {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 50%, var(--accent-color) 100%);
            position: relative;
            overflow: hidden;
            padding: 120px 0 80px;
        }

        .privacy-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="15" height="15" patternUnits="userSpaceOnUse"><path d="M 15 0 L 0 0 0 15" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.6;
        }

        .privacy-icon {
            width: 85px;
            height: 85px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            margin: 0 auto 2rem;
            backdrop-filter: blur(15px);
            border: 3px solid rgba(255, 255, 255, 0.2);
            position: relative;
            z-index: 2;
        }

        .content-section {
            background: white;
            border-radius: 1.2rem;
            padding: 3rem 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
            border-left: 5px solid var(--primary-color);
            position: relative;
            overflow: hidden;
        }

        .content-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 120px;
            height: 120px;
            background: linear-gradient(45deg, var(--secondary-color) 0%, transparent 70%);
            border-radius: 0 1.2rem 0 120px;
            opacity: 0.4;
        }

        .section-number {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .content-section h2 {
            color: var(--primary-color);
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .content-section p {
            color: #6c757d;
            line-height: 1.7;
            font-size: 1.05rem;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .highlight-box {
            background: linear-gradient(135deg, var(--secondary-color) 0%, #f8f9ff 100%);
            border-radius: 0.8rem;
            padding: 2rem;
            margin: 2rem 0;
            border-left: 4px solid var(--accent-color);
            position: relative;
            z-index: 2;
        }

        .highlight-box::after {
            content: '💡';
            position: absolute;
            top: -12px;
            right: 20px;
            font-size: 1.4rem;
            background: white;
            padding: 0.4rem;
            border-radius: 50%;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .highlight-box h4 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .highlight-box p {
            color: #5a6c7d;
            margin: 0;
            font-size: 1rem;
        }

        .privacy-principle {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
            border-radius: 0.8rem;
            padding: 1.8rem;
            margin-bottom: 1.2rem;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(123, 104, 238, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .privacy-principle:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(123, 104, 238, 0.15);
        }

        .principle-icon {
            width: 55px;
            height: 55px;
            background: var(--secondary-color);
            border-radius: 0.6rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
            color: var(--primary-color);
            border: 2px solid rgba(123, 104, 238, 0.2);
        }

        .privacy-principle h4 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 0.8rem;
            font-size: 1.15rem;
        }

        .privacy-principle p {
            color: #6c757d;
            margin: 0;
            line-height: 1.6;
            font-size: 1rem;
        }

        .last-updated {
            background: linear-gradient(135deg, var(--secondary-color) 0%, #e8f0ff 100%);
            border-radius: 0.6rem;
            padding: 1.2rem;
            text-align: center;
            color: var(--primary-color);
            font-weight: 500;
            margin-bottom: 2rem;
            border: 1px solid rgba(123, 104, 238, 0.2);
            font-size: 0.95rem;
        }

        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }

        .col-lg-8 {
            flex: 0 0 66.666667%;
            max-width: 66.666667%;
            padding: 0 15px;
        }

        .justify-content-center {
            justify-content: center;
        }

        .text-center {
            text-align: center;
        }

        .text-white {
            color: white;
        }

        .lead {
            font-size: 1.2rem;
            font-weight: 300;
            line-height: 1.6;
        }

        .mb-4 {
            margin-bottom: 1.5rem;
        }

        .mt-5 {
            margin-top: 3rem;
        }

        @media (max-width: 992px) {
            .col-lg-8 {
                flex: 0 0 100%;
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .privacy-hero {
                padding: 100px 0 60px;
            }
            
            .privacy-icon {
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
            }
            
            .content-section {
                padding: 2.5rem 2rem;
                margin: 2rem 0;
            }
            
            .content-section h2 {
                font-size: 1.6rem;
            }
            
            .highlight-box {
                padding: 1.5rem;
            }
            
            .privacy-principle {
                padding: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .privacy-hero {
                padding: 80px 0 40px;
            }
            
            .content-section {
                padding: 2rem 1.5rem;
            }
            
            .content-section h2 {
                font-size: 1.4rem;
            }
            
            .section-number {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }
        }
    











        .terms-header {
            padding: 2rem 0 1.5rem;
            border-bottom: 3px solid var(--primary-color);
            margin-bottom: 3rem;
            background: linear-gradient(135deg, var(--bg-secondary) 0%, #f8f9fa 100%);
            border-radius: 1rem 1rem 0 0;
            padding-left: 2rem;
            padding-right: 2rem;
        }

        .terms-content {
            background: white;
            border-radius: 1rem;
            padding: 3rem 2.5rem;
            margin: 2rem 0;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
            border-left: 5px solid var(--accent-color);
            position: relative;
            line-height: 1.8;
        }

        .terms-content::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: linear-gradient(45deg, var(--secondary-color), transparent);
            border-radius: 0 1rem 0 100px;
            opacity: 0.3;
        }

        .terms-content p {
            color: #5a6c7d;
            font-size: 1.05rem;
            margin-bottom: 1.8rem;
            text-align: justify;
            position: relative;
            z-index: 2;
        }

        .last-updated {
            background: linear-gradient(135deg, var(--secondary-color), #f0f7ff);
            border-radius: 0.75rem;
            padding: 1.2rem;
            text-align: center;
            color: var(--primary-color);
            font-weight: 500;
            margin-bottom: 2rem;
            border: 1px solid rgba(123, 104, 238, 0.2);
            font-size: 0.95rem;
        }

        .highlight-text {
            background: linear-gradient(135deg, #fff3cd, #ffeaa7);
            padding: 1.8rem;
            border-radius: 0.75rem;
            border-left: 4px solid #f39c12;
            margin: 2.5rem 0;
            font-weight: 500;
            color: #856404;
            position: relative;
            z-index: 2;
            font-size: 1.05rem;
            line-height: 1.7;
        }

        .important-notice {
            background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
            color: white;
            padding: 2rem;
            border-radius: 0.75rem;
            margin: 2.5rem 0;
            font-weight: 500;
            text-align: center;
            position: relative;
            z-index: 2;
            font-size: 1.05rem;
            line-height: 1.6;
        }

        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }

        .col-lg-8 {
            flex: 0 0 66.666667%;
            max-width: 66.666667%;
            padding: 0 15px;
        }

        .justify-content-center {
            justify-content: center;
        }

        @media (max-width: 992px) {
            .col-lg-8 {
                flex: 0 0 100%;
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .terms-content {
                padding: 2.5rem 2rem;
                margin: 2rem 0;
            }
            
            .terms-header {
                padding: 1.5rem;
                margin-bottom: 2rem;
            }
            
            .terms-header h1 {
                font-size: 2rem;
            }

            .terms-content p {
                font-size: 1rem;
                text-align: left;
            }

            .highlight-text,
            .important-notice {
                padding: 1.5rem;
                font-size: 1rem;
            }

            .container {
                padding-top: 100px !important;
                padding-bottom: 60px !important;
            }
        }

        @media (max-width: 576px) {
            .terms-content {
                padding: 2rem 1.5rem;
            }
            
            .terms-header {
                padding: 1.2rem;
            }
            
            .terms-header h1 {
                font-size: 1.7rem;
            }

            .container {
                padding-top: 80px !important;
                padding-bottom: 40px !important;
            }
        }

















        /* Disclaimer Page Specific Styles */

.disclaimer-header {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff6b6b 50%, var(--primary-color) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.disclaimer-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="warning" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1"/><circle cx="12.5" cy="12.5" r="2" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23warning)"/></svg>');
    opacity: 0.4;
}

.warning-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    margin: 0 auto 2rem;
    backdrop-filter: blur(15px);
    border: 3px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    animation: warningPulse 3s ease-in-out infinite;
}

@keyframes warningPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

.disclaimer-content {
    background: white;
    border-radius: 1.2rem;
    padding: 3.5rem 3rem;
    margin: 3rem 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-left: 6px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.disclaimer-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #fff3cd, transparent);
    border-radius: 0 1.2rem 0 120px;
    opacity: 0.3;
}

.disclaimer-content h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
    position: relative;
    z-index: 2;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
}

.disclaimer-content h2:first-of-type {
    margin-top: 0;
}

.disclaimer-content p {
    color: #5a6c7d;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    text-align: justify;
}

.disclaimer-content ul {
    color: #5a6c7d;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    margin-left: 1.5rem;
    position: relative;
    z-index: 2;
}

.disclaimer-content li {
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
}

.disclaimer-content strong {
    color: var(--accent-color);
    font-weight: 600;
}

.warning-box {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 2px solid #f39c12;
    border-radius: 0.8rem;
    padding: 2.2rem;
    margin: 2.5rem 0;
    position: relative;
    z-index: 2;
}

.warning-box::before {
    content: '⚠️';
    position: absolute;
    top: -18px;
    left: 25px;
    background: white;
    padding: 0.6rem;
    border-radius: 50%;
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.warning-box h4 {
    color: #856404;
    margin-bottom: 1.2rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.warning-box p {
    color: #856404;
    margin-bottom: 0;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.6;
}

.important-notice {
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
    color: white;
    padding: 2.5rem;
    border-radius: 0.8rem;
    margin: 3rem 0;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    line-height: 1.6;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.disclaimer-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, #f8f9ff 100%);
    border-radius: 0.8rem;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
    position: relative;
    z-index: 2;
}

.disclaimer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.disclaimer-section p {
    color: #6c757d;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.disclaimer-section ul {
    color: #6c757d;
    margin-left: 1.2rem;
    font-size: 1rem;
}

.disclaimer-section li {
    margin-bottom: 0.6rem;
}

.last-updated {
    background: linear-gradient(135deg, var(--secondary-color), #e8f0ff);
    border-radius: 0.6rem;
    padding: 1.2rem;
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(123, 104, 238, 0.2);
    font-size: 0.95rem;
}

/* Utility Classes */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding: 0 15px;
}

.justify-content-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

.text-white {
    color: white;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .col-lg-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .disclaimer-header {
        padding: 100px 0 60px;
    }
    
    .warning-icon {
        width: 70px;
        height: 70px;
        font-size: 2.2rem;
    }
    
    .disclaimer-content {
        padding: 2.5rem 2rem;
        margin: 2rem 0;
    }
    
    .disclaimer-content h2 {
        font-size: 1.5rem;
    }
    
    .disclaimer-content p,
    .disclaimer-content ul {
        font-size: 1rem;
        text-align: left;
    }
    
    .warning-box {
        padding: 1.8rem;
    }
    
    .important-notice {
        padding: 2rem;
        font-size: 1rem;
    }
    
    .disclaimer-section {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .disclaimer-header {
        padding: 80px 0 40px;
    }
    
    .warning-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .disclaimer-content {
        padding: 2rem 1.5rem;
    }
    
    .disclaimer-content h2 {
        font-size: 1.3rem;
    }
    
    .warning-box {
        padding: 1.5rem;
    }
    
    .warning-box::before {
        top: -15px;
        left: 20px;
        padding: 0.4rem;
        font-size: 1.2rem;
    }
    
    .important-notice {
        padding: 1.5rem;
    }
    
    .disclaimer-section {
        padding: 1.2rem;
    }
}

/* Print Styles */
@media print {
    .disclaimer-header {
        background: #f8f9fa !important;
        color: #333 !important;
        padding: 2rem 0 !important;
    }
    
    .warning-icon {
        display: none;
    }
    
    .disclaimer-content::before {
        display: none;
    }
    
    .warning-box,
    .important-notice,
    .disclaimer-section {
        background: #f8f9fa !important;
        color: #333 !important;
        border: 1px solid #ddd !important;
    }
}














    
        .thankyou-section {
            min-height: 70vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, var(--bg-dark) 0%, var(--secondary-color) 100%);
            padding: 120px 0 80px;
        }

        .thankyou-card {
            background: white;
            border-radius: 1.5rem;
            padding: 4rem 3rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            text-align: center;
            position: relative;
            border-top: 6px solid var(--primary-color);
            overflow: hidden;
        }

        .thankyou-card::before {
            content: '';
            position: absolute;
            top: -3px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 6px;
            background: var(--accent-color);
            border-radius: 3px;
        }

        .success-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--primary-color), #2c6183);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 3rem;
            color: white;
            box-shadow: 0 10px 30px rgba(123, 104, 238, 0.3);
            animation: successBounce 2s ease-in-out infinite;
        }

        @keyframes successBounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }

        .thankyou-title {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            font-weight: 700;
            font-size: 2.2rem;
        }

        .thankyou-message {
            color: var(--text-dark);
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .action-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .btn-home {
            background: linear-gradient(135deg, var(--primary-color), #2c6183);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 0.75rem;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            font-size: 1rem;
        }

        .btn-home:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(123, 104, 238, 0.3);
            color: white;
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary-color);
            padding: 1rem 2.5rem;
            border: 2px solid var(--primary-color);
            border-radius: 0.75rem;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .btn-secondary:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }

        /* Utility Classes */
        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }

        .col-lg-8 {
            flex: 0 0 66.666667%;
            max-width: 66.666667%;
            padding: 0 15px;
        }

        .justify-content-center {
            justify-content: center;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .col-lg-8 {
                flex: 0 0 100%;
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .thankyou-section {
                padding: 100px 0 60px;
            }
            
            .thankyou-card {
                padding: 3rem 2rem;
            }
            
            .success-icon {
                width: 80px;
                height: 80px;
                font-size: 2.5rem;
            }
            
            .thankyou-title {
                font-size: 1.8rem;
            }
            
            .action-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-home, .btn-secondary {
                width: 100%;
                max-width: 280px;
            }
        }

        @media (max-width: 576px) {
            .thankyou-section {
                padding: 80px 0 40px;
            }
            
            .thankyou-card {
                padding: 2.5rem 1.5rem;
            }
            
            .thankyou-title {
                font-size: 1.6rem;
            }
            
            .thankyou-message {
                font-size: 1rem;
            }
            
            .btn-home, .btn-secondary {
                padding: 0.875rem 2rem;
                font-size: 0.95rem;
            }
        }













        .cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--bg-secondary), var(--text-dark));
  color: var(--text-light);
  padding: 20px;
  z-index: 1000;
  border-top: 3px solid var(--primary-color);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-text p {
  margin: 0;
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.cookie-btn.accept {
  background: var(--primary-color);
  color: white;
}

.cookie-btn.accept:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

.cookie-btn.decline {
  background: transparent;
  color: #cccccc;
  border: 1px solid #666;
}

.cookie-btn.decline:hover {
  background: #666;
  color: white;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .cookie-text p {
    font-size: 0.9rem;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  .cookie-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}