
:root {
  --primary: #1E4D8C;
  --secondary: #3A7CA5;
  --accent: #0FB5BA;
  --bg-gradient: linear-gradient(135deg, #EBF2FA 0%, #D7E3F5 100%);
  --text-primary: #2C3E50;
  --text-secondary: #546E7A;
  --light-bg: #F8FBFF;
  --dark-bg: #0A2540;
  --success: #2E7D32;
  --warning: #F9A825;
  --white: #FFFFFF;
  --gray-100: #F8F9FA;
  --gray-200: #E9ECEF;
  --gray-300: #DEE2E6;
  --gray-400: #CED4DA;
  --gray-500: #ADB5BD;
  --gray-600: #6C757D;
  --gray-700: #495057;
  --gray-800: #343A40;
  --gray-900: #212529;
  --section-angle: -15deg;
}

body {
  font-family: 'Onest', sans-serif;
  color: var(--text-primary);
  background-color: var(--light-bg);
  overflow-x: hidden;
}


.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: white;
  padding: 8px;
  z-index: 1050;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}


header {
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  transition: transform 0.3s ease;
  z-index: 1030;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container img {
  height: 40px;
}

.nav-container {
  display: flex;
  align-items: center;
}

.main-nav {
  margin-right: 30px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  margin: 0 15px;
}

.main-nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s;
}

.main-nav a:hover,
.main-nav a:focus,
.main-nav a.active {
  color: var(--accent);
}

.main-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.3s;
}

.main-nav a:hover::after,
.main-nav a:focus::after,
.main-nav a.active::after {
  width: 100%;
}

.contact-phone {
  display: flex;
  align-items: center;
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s;
}

.contact-phone i {
  margin-right: 8px;
}

.contact-phone:hover,
.contact-phone:focus {
  color: var(--accent);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
}


.diagonal-section {
  position: relative;
  padding: 80px 0;
  margin: 60px 0;
  overflow: hidden;
}

.diagonal-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  transform: skewY(var(--section-angle));
  transform-origin: 100% 0;
  background: var(--bg-gradient);
  z-index: -1;
}

.diagonal-section.alt {
  background: transparent;
}

.diagonal-section.alt::before {
  background: var(--white);
}


.hero-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 120px 0 160px;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: var(--light-bg);
  transform: skewY(var(--section-angle));
  transform-origin: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  color: var(--white);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  color: var(--gray-100);
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-weight: 300;
  max-width: 80%;
}

.hero-cta {
  background: linear-gradient(90deg, var(--accent), #27E0E7);
  color: var(--dark-bg);
  border: none;
  padding: 12px 30px;
  font-size: 1.125rem;
  font-weight: 500;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(15, 181, 186, 0.3);
}

.hero-cta:hover,
.hero-cta:focus {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(15, 181, 186, 0.4);
  color: var(--dark-bg);
}

.hero-image {
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: auto;
  transform: scale(1.05);
  transition: transform 0.5s;
}

.hero-image:hover img {
  transform: scale(1);
}


.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-weight: 400;
}

.content-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: auto;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.card-body {
  padding: 25px;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary);
}

.card-text {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}


.feature-box {
  padding: 30px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s;
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  font-size: 24px;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary);
}

.feature-text {
  color: var(--text-secondary);
  line-height: 1.6;
}


.timeline {
  position: relative;
  max-width: 1200px;
  margin: 40px auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: 2px;
}

.timeline-item {
  padding: 10px 50px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-content {
  padding: 20px 30px;
  background: var(--white);
  position: relative;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.timeline-date {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.timeline-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.timeline-text {
  line-height: 1.6;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  top: 25px;
  z-index: 1;
}

.timeline-item:nth-child(odd)::after {
  right: 40px;
}

.timeline-item:nth-child(even)::after {
  left: 40px;
}


.spending-widget {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin: 50px 0;
}

.widget-header {
  margin-bottom: 30px;
}

.widget-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.widget-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

.input-group-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
}

.tracker-form label {
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 8px;
}

.tracker-form .form-control {
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  padding: 12px 15px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.tracker-form .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(15, 181, 186, 0.2);
}

.tracker-form .btn {
  padding: 12px 25px;
  font-weight: 500;
  border-radius: 8px;
}

.tracker-form .btn-primary {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.tracker-form .btn-primary:hover,
.tracker-form .btn-primary:focus {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(30, 77, 140, 0.3);
}

.tracker-form .btn-outline-secondary {
  border-color: var(--gray-400);
  color: var(--gray-700);
}

.tracker-stats {
  background: var(--light-bg);
  border-radius: 10px;
  padding: 25px;
  margin-top: 30px;
}

.stat-card {
  background: var(--white);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.stat-change {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
}

.stat-change.positive {
  color: var(--success);
}

.stat-change.negative {
  color: var(--warning);
}

.stat-change i {
  margin-right: 5px;
}

.chart-container {
  background: var(--white);
  border-radius: 10px;
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}


.contact-form {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  padding: 40px;
  margin: 50px 0;
}

.form-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 30px;
  text-align: center;
}

.contact-form label {
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 8px;
}

.contact-form .form-control {
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  padding: 12px 15px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(15, 181, 186, 0.2);
}

.contact-form textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.contact-form .btn-primary {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border: none;
  padding: 12px 30px;
  font-size: 1.125rem;
  font-weight: 500;
  border-radius: 8px;
  width: 100%;
  margin-top: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-form .btn-primary:hover,
.contact-form .btn-primary:focus {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(30, 77, 140, 0.3);
}

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


.quote-block {
  background: var(--primary);
  border-radius: 15px;
  padding: 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  margin: 50px 0;
}

.quote-block::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 150px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.1);
  font-family: Georgia, serif;
}

.quote-text {
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.quote-author {
  font-weight: 600;
  font-size: 1.125rem;
  position: relative;
  z-index: 1;
}


footer {
  background: var(--dark-bg);
  color: var(--white);
  padding: 60px 0 30px;
  position: relative;
}

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

.footer-logo img {
  height: 40px;
  margin-bottom: 20px;
}

.footer-description {
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-contact {
  margin-bottom: 30px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: var(--gray-300);
}

.footer-contact-item i {
  margin-right: 15px;
  color: var(--accent);
  font-size: 20px;
  margin-top: 3px;
}

.footer-contact-item span {
  line-height: 1.6;
}

.footer-links-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--white);
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.3s;
  display: inline-block;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background: var(--accent);
  transition: width 0.3s;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--accent);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 30px;
}

.footer-copyright {
  color: var(--gray-500);
  font-size: 0.875rem;
}

.cookie-settings-btn {
  background: none;
  border: none;
  color: var(--gray-400);
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.3s;
  padding: 0;
  font-size: 0.875rem;
}

.cookie-settings-btn:hover,
.cookie-settings-btn:focus {
  color: var(--accent);
}


.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  padding: 20px;
  z-index: 1050;
  display: none;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.cookie-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}

.cookie-close {
  background: none;
  border: none;
  color: var(--gray-600);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.cookie-text {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-btn {
  padding: 10px 20px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cookie-accept-all {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: var(--white);
  border: none;
  flex: 1;
}

.cookie-accept-all:hover,
.cookie-accept-all:focus {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(30, 77, 140, 0.3);
}

.cookie-reject-all {
  background: var(--white);
  color: var(--text-primary);
  border: 1px solid var(--gray-400);
  flex: 1;
}

.cookie-reject-all:hover,
.cookie-reject-all:focus {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cookie-customize {
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--primary);
  flex: 1;
}

.cookie-customize:hover,
.cookie-customize:focus {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cookie-settings {
  display: none;
  margin-top: 20px;
}

.cookie-category {
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.cookie-category-title {
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}

.cookie-category-description {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--gray-400);
  transition: 0.4s;
  border-radius: 24px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.cookie-switch input:checked + .cookie-slider {
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(26px);
}

.cookie-switch input:disabled + .cookie-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-save {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: var(--white);
  border: none;
  padding: 10px 20px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  display: block;
  width: 100%;
  margin-top: 20px;
}

.cookie-save:hover,
.cookie-save:focus {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(30, 77, 140, 0.3);
}


.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  display: none;
}

.modal-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  padding: 30px;
  z-index: 1050;
  max-width: 500px;
  width: 90%;
  display: none;
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}

.modal-dialog.show {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  color: var(--gray-600);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.modal-body {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
}

.modal-btn {
  padding: 10px 20px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.modal-btn-primary {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: var(--white);
  border: none;
  margin-left: 10px;
}

.modal-btn-primary:hover,
.modal-btn-primary:focus {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(30, 77, 140, 0.3);
}

.modal-btn-secondary {
  background: var(--white);
  color: var(--text-primary);
  border: 1px solid var(--gray-400);
}

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


.iti {
  width: 100%;
}

.iti__flag {
  background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags@2x.png");
  }
}


@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
    max-width: 100%;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .timeline::after {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  .timeline-item:nth-child(even) {
    left: 0;
  }
  
  .timeline-item:nth-child(odd)::after,
  .timeline-item:nth-child(even)::after {
    left: 21px;
  }
  
  .contact-form {
    padding: 30px;
  }
}

@media (max-width: 767.98px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 1040;
    flex-direction: column;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.3s;
    padding: 20px;
  }
  
  .nav-container.show {
    transform: translateX(0);
  }
  
  .main-nav {
    margin-right: 0;
    margin-bottom: 30px;
  }
  
  .main-nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  .main-nav li {
    margin: 15px 0;
  }
  
  .main-nav a {
    font-size: 1.25rem;
  }
  
  .contact-phone {
    font-size: 1.25rem;
  }
  
  .mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
  }
  
  .hero-section {
    padding: 80px 0 120px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .hero-cta {
    padding: 10px 25px;
    font-size: 1rem;
  }
  
  .diagonal-section {
    padding: 60px 0;
    margin: 40px 0;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 1.125rem;
  }
  
  .cookie-actions {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .quote-text {
    font-size: 1.25rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .card-title {
    font-size: 1.25rem;
  }
  
  .feature-title {
    font-size: 1.125rem;
  }
  
  .timeline-item {
    padding-left: 60px;
  }
  
  .timeline-content {
    padding: 15px 20px;
  }
  
  .contact-form {
    padding: 20px;
  }
  
  .cookie-consent {
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 10px 10px 0 0;
  }
}