/* GetMyLoans.co.uk - Main Stylesheet */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Nunito', sans-serif;
  background: #f3f3f7;
  color: #43455c;
  line-height: 1.4;
  font-size: 14px;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  margin-top: 20px;
  margin-bottom: 15px;
}

h1 {
  font-size: 32px;
  line-height: 1.3;
}

h2 {
  font-size: 28px;
  line-height: 1.3;
}

h3 {
  font-size: 24px;
  line-height: 1.3;
}

p {
  margin-bottom: 15px;
}

a {
  color: #07b883;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul, ol {
  margin-left: 20px;
  margin-bottom: 15px;
}

li {
  margin-bottom: 8px;
}

/* Layout */
.inner-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px;
}

#page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
header {
  padding: 20px 0;
  background: #ffffff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

header img {
  max-width: 200px;
  height: auto;
}

header nav {
  margin-top: 10px;
}

header nav a {
  color: #43455c;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 600;
}

header nav a:hover {
  color: #07b883;
}

/* Sections */
section {
  padding: 40px 0;
}

section h2, section h3, section h4 {
  margin-top: 0;
}

/* CTA Buttons */
.cta-splash, .cta-stick-1 {
  background: #07b883;
  color: #ffffff;
  padding: 20px 40px;
  border-radius: 5px;
  text-align: center;
  display: inline-block;
  font-size: 18px;
  border: 2px solid #00b37d;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-splash:hover, .cta-stick-1:hover {
  background: #ffffff;
  color: #07b883;
  border-color: #07b883;
  text-decoration: none;
}

/* Hero Section */
.hero-section {
  background: url('https://i.ibb.co/S4TKHtt1/DT-IT-40-blur-rt.jpg') center center / cover no-repeat;
  position: relative;
  color: #ffffff;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7, 184, 131, 0.85);
}

.hero-section .inner-wrap {
  position: relative;
  z-index: 1;
}

.hero-section h1, .hero-section h2 {
  color: #ffffff;
}

/* Footer */
footer {
  background: #2e3047;
  color: #989db2;
  font-size: 12px;
  padding: 30px 0;
  margin-top: auto;
}

footer a {
  color: #f3f3f7;
  text-decoration: none;
}

footer a:hover {
  color: #07b883;
}

footer p {
  margin-bottom: 10px;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #d0d1dd;
  border-radius: 3px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
}

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

/* Responsive */
@media (max-width: 768px) {
  header .inner-wrap {
    flex-direction: column;
    text-align: center;
  }

  header nav {
    margin-top: 15px;
  }

  header nav a {
    display: inline-block;
    margin: 5px;
  }

  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 18px;
  }

  .cta-splash, .cta-stick-1 {
    padding: 15px 30px;
    font-size: 16px;
  }
}
