


:root {
  --primary: #3D2A8C;
  --secondary: #FF5C35;
  --accent: #14C9CB;
  --dark: #1A1A2E;
  --light: #F7F7F9;
  --text: #333333;
  --warning: #E74C3C;
  --gradient: linear-gradient(135deg, var(--primary), var(--accent));
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  --diagonal-angle: 5deg;
}

body {
  font-family: 'Work Sans', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background-color: var(--light);
  overflow-x: hidden;
}


h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}


.diagonal-section {
  position: relative;
  padding: 80px 0;
  margin-bottom: -50px;
  z-index: 1;
  transform: skewY(var(--diagonal-angle));
}

.diagonal-section > * {
  transform: skewY(calc(-1 * var(--diagonal-angle)));
}

.diagonal-section:nth-child(odd) {
  background-color: var(--light);
  z-index: 3;
}

.diagonal-section:nth-child(even) {
  background-color: #f0f0f5;
  z-index: 2;
}

.diagonal-section.primary-bg {
  background: var(--gradient);
  color: white;
}

.diagonal-section.dark-bg {
  background-color: var(--dark);
  color: white;
}

.section-regular {
  padding: 80px 0;
}


.urban-border {
  border-radius: 0 15px 0 15px;
  border: 3px solid var(--secondary);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.urban-accent {
  position: relative;
}

.urban-accent::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 6px;
  background: var(--accent);
  border-radius: 6px;
}

.graffiti-bg {
  position: relative;
}

.graffiti-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/urban-finance.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: -1;
}

.spray-highlight {
  position: relative;
  display: inline-block;
}

.spray-highlight::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -10px;
  right: -10px;
  bottom: -5px;
  background-color: var(--secondary);
  opacity: 0.2;
  z-index: -1;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}


.uk-navbar-container {
  background: var(--dark) !important;
}

.uk-navbar-container.smaller-header {
  padding: 5px 0;
  box-shadow: var(--shadow);
}

.uk-navbar-nav > li > a,
.uk-navbar-dropdown-nav > li > a {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: white;
  transition: color 0.3s;
}

.uk-navbar-nav > li:hover > a,
.uk-navbar-dropdown-nav > li:hover > a {
  color: var(--accent);
}

.uk-navbar-dropdown {
  background: var(--dark);
  border-left: 3px solid var(--secondary);
}

.nav-button {
  background: var(--secondary);
  color: white !important;
  border-radius: 4px;
  padding: 0 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 10px rgba(255, 92, 53, 0.3);
  transition: all 0.3s;
}

.nav-button:hover {
  background: var(--primary);
  box-shadow: 0 5px 15px rgba(61, 42, 140, 0.5);
  transform: translateY(-2px);
}


.feature-card {
  padding: 30px;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--primary);
  transition: transform 0.3s;
}

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

.feature-card i {
  color: var(--accent);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.step-card {
  position: relative;
  padding: 40px 25px 25px;
  margin-top: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: var(--secondary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}


.btn-primary {
  background-color: var(--secondary);
  color: white;
  border-radius: 4px;
  padding: 10px 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 10px rgba(255, 92, 53, 0.3);
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 5px 15px rgba(61, 42, 140, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 4px;
  padding: 8px 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}


.contact-form {
  background-color: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--accent);
}

.contact-form .uk-input,
.contact-form .uk-textarea {
  border: 2px solid #e5e5e5;
  border-radius: 4px;
}

.contact-form .uk-input:focus,
.contact-form .uk-textarea:focus {
  border-color: var(--accent);
}

.form-label {
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}


.iti {
  width: 100%;
}


.footer {
  background-color: var(--dark);
  color: #ffffff;
  padding: 60px 0 30px;
}

.footer h4 {
  color: var(--accent);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.footer a {
  color: #dddddd;
  transition: color 0.3s;
}

.footer a:hover {
  color: var(--accent);
  text-decoration: none;
}

.footer-info {
  margin-bottom: 40px;
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 0.9rem;
  color: #999999;
}


.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  font-weight: 500;
  padding: 15px 20px;
  background-color: rgba(20, 201, 203, 0.1);
  cursor: pointer;
  border-left: 3px solid var(--accent);
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: rgba(20, 201, 203, 0.2);
}

.faq-answer {
  padding: 0 20px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 20px;
}


@media (max-width: 960px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .diagonal-section {
    padding: 60px 0;
    transform: skewY(8deg);
  }
  
  .diagonal-section > * {
    transform: skewY(-8deg);
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .section-regular,
  .diagonal-section {
    padding: 40px 0;
  }
  
  .feature-card, 
  .step-card, 
  .contact-form {
    padding: 20px;
  }
}


.uk-modal-dialog {
  border-radius: 8px;
  overflow: hidden;
}

.urban-modal {
  position: relative;
}

.urban-modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--gradient);
}


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark);
  color: white;
  padding: 15px;
  z-index: 1000;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-settings-modal {
  max-width: 600px;
  margin: auto;
}

.cookie-category {
  border: 1px solid #ddd;
  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;
  font-size: 1.1rem;
}


.uk-container {
  max-width: 1200px;
}

.uk-button {
  text-transform: none;
  border-radius: 4px;
  font-weight: 500;
}

.uk-button-primary {
  background-color: var(--secondary);
}

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

.uk-card {
  border-radius: 8px;
  overflow: hidden;
}

.uk-section-primary {
  background: var(--gradient);
}

.uk-alert {
  border-radius: 8px;
}

.uk-alert-primary {
  background-color: rgba(20, 201, 203, 0.1);
  color: var(--accent);
  border: 1px solid rgba(20, 201, 203, 0.3);
}

.uk-breadcrumb > * > * {
  color: var(--text);
  font-size: 0.9rem;
}

.uk-breadcrumb > :last-child > * {
  color: var(--primary);
}

.uk-breadcrumb > :nth-child(n+2):not(:last-child)::before {
  margin: 0 8px;
}