:root {
  --primary: #2e7d32;
  --primary-light: #4caf50;
  --primary-dark: #1b5e20;
  --secondary: #f5f5f5;
  --text: #333333;
  --text-light: #666666;
  --white: #ffffff;
  --accent: #81c784;
  --danger: #d32f2f;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  color: var(--text);
  line-height: 1.6;
}

header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: fixed;
  width: 100%;
  z-index: 100;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.logo span {
  color: var(--primary-dark);
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

/* Dropdown menu styles */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--white);
  min-width: 200px;
  box-shadow: var(--shadow);
  z-index: 1;
  border-radius: 4px;
  overflow: hidden;
}

.dropdown-content a {
  color: var(--text);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s;
}

.dropdown-content a:hover {
  background-color: var(--secondary);
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown > a::after {
  content: "▼";
  font-size: 10px;
  margin-left: 5px;
  vertical-align: middle;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--text);
  margin: 3px 0;
  transition: 0.4s;
}

.hero {
  background: linear-gradient(rgba(46, 125, 50, 0.9), rgba(46, 125, 50, 0.7)), url('/api/placeholder/1200/600') center/cover;
  color: var(--white);
  padding: 160px 0 80px;
  text-align: center;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 30px;
}

.btn {
  display: inline-block;
  background-color: var(--white);
  color: var(--primary);
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  margin: 5px;
}

.btn:hover {
  background-color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

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

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

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 15px;
}

.section-title p {
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-content h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 22px;
}

.service-content p {
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-content ul {
  list-style-type: none;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-content li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.service-content li:before {
  content: "•";
  color: var(--primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.button-container {
  margin-top: 15px;
  display: block;
}

.button-container .btn,
.service-content .btn {
  display: inline-block;
  background-color: var(--white);
  color: var(--primary);
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid var(--primary);
  transition: all 0.3s;
}

.button-container .btn:hover,
.service-content .btn:hover {
  background-color: var(--primary);
  color: var(--white);
}

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

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-text {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.about-text h3 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 28px;
}

.about-text p {
  margin-bottom: 20px;
}

.about-text ul {
  list-style-position: inside;
  margin: 20px 0;
  flex-grow: 1;
}

.about-text li {
  margin-bottom: 10px;
}

.testimonials {
  text-align: center;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.testimonial {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin: 20px 0;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary);
}

.cta {
  background: linear-gradient(rgba(46, 125, 50, 0.9), rgba(46, 125, 50, 0.7)), url('/api/placeholder/1200/400') center/cover;
  color: var(--white);
  text-align: center;
}

.cta h2 {
  margin-bottom: 30px;
}

footer {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-column h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--accent);
}

.footer-column p, .footer-column a {
  color: var(--secondary);
  margin-bottom: 10px;
  display: block;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: var(--white);
  text-decoration: underline;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Page Header (for inner pages) */
.page-header {
  background-color: var(--primary);
  color: var(--white);
  padding: 120px 0 60px;
  text-align: center;
  display: flex;
  align-items: center;
  min-height: 240px;
}

.page-header h1 {
  font-size: 36px;
  margin-bottom: 0;
  width: 100%;
}

/* About page specific styles */
.about-page-content {
  max-width: 800px;
  margin: 0 auto;
}

.profile-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 60px;
}

.profile-image {
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 300px;
}

.profile-image img {
  width: 100%;
  height: auto;
  display: block;
}

.profile-text h2 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 28px;
}

.profile-text p {
  margin-bottom: 20px;
}

.experience-section {
  margin-bottom: 60px;
  width: 100%;
}

.experience-section h2 {
  color: var(--primary);
  margin-bottom: 30px;
  font-size: 28px;
  text-align: center;
}

.experience-list {
  list-style-type: none;
}

.experience-item {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 25px;
  margin-bottom: 25px;
}

.experience-item h3 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 20px;
}

.experience-item p {
  margin-bottom: 0;
}

.qualifications-section {
  background-color: var(--secondary);
  padding: 40px;
  border-radius: 8px;
  margin-bottom: 60px;
}

.qualifications-section h2 {
  color: var(--primary);
  margin-bottom: 25px;
  font-size: 28px;
  text-align: center;
}

.qualifications-list {
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.qualification-item {
  background-color: var(--white);
  border-radius: 8px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.qualification-item h3 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 18px;
}

.contact-cta {
  text-align: center;
  background: linear-gradient(rgba(46, 125, 50, 0.9), rgba(46, 125, 50, 0.7)), url('/api/placeholder/800/300') center/cover;
  padding: 50px 30px;
  border-radius: 8px;
  color: var(--white);
  margin-top: 40px;
}

.contact-cta h2 {
  margin-bottom: 20px;
  font-size: 28px;
}

.contact-cta p {
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Info pages (Domestic Abuse, Sexual Violence, etc) */
.info-content {
  max-width: 800px;
  margin: 0 auto;
}

.info-section {
  margin-bottom: 50px;
}

.info-section h2 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 28px;
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 10px;
}

.info-section h3 {
  color: var(--primary);
  margin: 25px 0 15px;
  font-size: 22px;
}

.info-section p {
  margin-bottom: 20px;
}

.info-section ul, .info-section ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.info-section li {
  margin-bottom: 10px;
}

.key-message {
  background-color: var(--secondary);
  padding: 20px;
  border-left: 4px solid var(--primary);
  margin: 30px 0;
}

.key-message p {
  font-weight: 600;
  margin-bottom: 0;
}

.warning {
  background-color: #ffebee;
  padding: 20px;
  border-left: 4px solid var(--danger);
  margin: 30px 0;
}

.warning p {
  color: var(--danger);
  font-weight: 600;
  margin-bottom: 0;
}

.highlight {
  background-color: #e8f5e9;
  padding: 20px;
  border-radius: 8px;
  margin: 30px 0;
}

.highlight h3 {
  color: var(--primary-dark);
  margin-top: 0;
}

.help-cta {
  background: linear-gradient(rgba(46, 125, 50, 0.9), rgba(46, 125, 50, 0.7)), url('/api/placeholder/800/300') center/cover;
  color: var(--white);
  text-align: center;
  padding: 40px 20px;
  border-radius: 8px;
  margin: 40px 0;
}

.help-cta h3 {
  color: var(--white);
  margin-bottom: 15px;
  font-size: 24px;
}

.help-cta .btn {
  background-color: var(--white);
  color: var(--primary);
  margin-top: 10px;
}

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

/* Safety Planning */
.safety-tip {
  background-color: #e8f5e9;
  padding: 20px;
  border-radius: 8px;
  margin: 10px 0 20px;
}

.safety-tip h4 {
  color: var(--primary-dark);
  margin-bottom: 10px;
  font-size: 18px;
}

.emergency-box {
  background-color: #ffebee;
  padding: 25px;
  border-radius: 8px;
  margin: 40px 0;
  border: 2px solid var(--danger);
}

.emergency-box h3 {
  color: var(--danger);
  margin-bottom: 15px;
  font-size: 24px;
}

.emergency-box p {
  margin-bottom: 15px;
}

.emergency-box .phone {
  font-size: 22px;
  font-weight: 700;
  margin: 15px 0;
}

/* Support Services */
.services-content {
  max-width: 1000px;
  margin: 0 auto;
}

.intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.intro p {
  margin-bottom: 20px;
}

.services-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
  border-radius: 8px;
  overflow: hidden;
}

.services-table th {
  background-color: var(--primary);
  color: var(--white);
  padding: 15px;
  text-align: left;
}

.services-table td {
  padding: 15px;
  border-bottom: 1px solid #ddd;
}

.services-table tr:last-child td {
  border-bottom: none;
}

.services-table tr:nth-child(even) {
  background-color: var(--secondary);
}

.services-table tr:hover {
  background-color: #e8f5e9;
}

.phone-number {
  font-weight: 600;
  white-space: nowrap;
}

/* Training page */
.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-intro h2 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 32px;
}

.course-card {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 40px;
}

.course-header {
  background-color: var(--primary);
  color: var(--white);
  padding: 20px 30px;
}

.course-header h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.course-details {
  display: flex;
  gap: 30px;
}

.course-detail {
  display: flex;
  align-items: center;
}

.course-detail i {
  margin-right: 8px;
}

.course-content {
  padding: 30px;
}

.course-description {
  margin-bottom: 30px;
}

.course-topics {
  margin-bottom: 30px;
}

.course-topics h4 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 18px;
}

.course-topics ul {
  list-style-type: none;
}

.course-topics li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.course-topics li:before {
  content: "•";
  color: var(--primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--secondary);
  padding: 15px 30px;
}

.course-price {
  font-weight: 600;
}

.bespoke-training {
  background-color: var(--secondary);
  padding: 40px;
  border-radius: 8px;
  margin-top: 60px;
}

.bespoke-training h3 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 24px;
}

.bespoke-training p {
  margin-bottom: 20px;
}

/* Consultancy page */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.service-box {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-box:hover {
  transform: translateY(-10px);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

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

.service-box:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: auto;
}

.service-content h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 22px;
}

.service-content p {
  margin-bottom: 20px;
}

.service-content ul {
  list-style-type: none;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-content li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.service-content li:before {
  content: "•";
  color: var(--primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.service-content .btn {
  align-self: flex-start;
  margin-top: auto;
}

.bespoke-services {
  background-color: var(--secondary);
  padding: 40px;
  border-radius: 8px;
  margin-top: 60px;
  text-align: center;
}

.bespoke-services h3 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 24px;
}

.bespoke-services p {
  margin-bottom: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact page */
.contact-content {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(300px, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  max-width: 100%;
}

.contact-info h2 {
  color: var(--primary);
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 20px;
}

.contact-method {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-method i {
  color: var(--primary);
  font-size: 20px;
  margin-right: 15px;
  margin-top: -20px;
}

.contact-form {
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
  max-width: 100%;
}

.contact-form h2 {
  color: var(--primary);
  margin-bottom: 20px;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

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

.emergency-notice {
  margin-top: 40px;
  padding: 20px;
  background-color: #ffebee;
  border-left: 4px solid #d32f2f;
  border-radius: 4px;
}

.emergency-notice h3 {
  color: #d32f2f;
  margin-bottom: 10px;
}

.emergency-notice a {
  color: #d32f2f;
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: var(--shadow);
    flex-direction: column;
    padding: 20px;
    transition: 0.3s;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links li {
    margin: 10px 0;
  }
  
  .hamburger {
    display: flex;
  }
  
  .about-page-content {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 18px;
  }
  
  .section-title h2 {
    font-size: 28px;
  }
  
  /* Mobile dropdown styles */
  .dropdown-content {
    position: static;
    display: none;
    box-shadow: none;
    padding-left: 15px;
    width: 100%;
    min-width: auto;
  }
  
  .dropdown.active .dropdown-content {
    display: block;
  }
  
  .dropdown > a::after {
    float: right;
  }
  
  .profile-section {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .profile-image {
    width: 200px;
    margin: 0 auto 30px;
  }
  
  .course-details {
    flex-direction: column;
    gap: 10px;
  }
  
  .services-table {
    display: block;
    overflow-x: auto;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    order: 2;
  }
  
  .contact-form {
    order: 1;
  }
}

/* Contact responsive layout */
@media (max-width: 900px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
} 