/* Global Variables */
:root {
    --primary-color: #dc1f27;
    --navy: #1a2b49;
    --text-color: #333;
    --white: #ffffff;
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--navy);
    margin-bottom: 1rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #b01820;
}

.btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: var(--navy);
    text-decoration: none;
    border: 2px solid var(--navy);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--navy);
    color: var(--white);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Media Queries */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
}

.hero-section {
  position: relative;
  height: calc(100vh - 170px);
  display: flex;
  margin-top: 170px;
  background: white;
}

.hero-content {
  width: 50%;
  padding: 0 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.hero-background {
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../media/zC_image_of_building.png');
  background-size: cover;
  background-position: center;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1A2B49;
  letter-spacing: -0.01em;
  font-family: 'Inter', sans-serif;
  margin: 0;
}

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.5;
  color: #4A5568;
  max-width: 500px;
  font-weight: 400;
  margin: 0;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 0.5rem;
}

.hero-button {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 6px;
  min-width: 140px;
  text-align: center;
}

.hero-button-primary {
  background: #1A2B49;
  color: white;
  border: none;
}

.hero-button-primary:hover {
  background: #2A3B59;
  transform: translateY(-1px);
}

.hero-button-secondary {
  background: transparent;
  color: #1A2B49;
  border: 1.5px solid #1A2B49;
}

.hero-button-secondary:hover {
  background: rgba(26, 43, 73, 0.05);
  transform: translateY(-1px);
}

/* Hero stats removed pending documentation verification */

@media (max-width: 1280px) {
  .hero-content {
    padding: 0 3rem;
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    padding: 0 2rem;
    width: 55%;
  }
  
  .hero-background {
    width: 45%;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  /* Hero stats removed pending documentation verification */
}

@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    height: auto;
    min-height: calc(100vh - 170px);
  }

  .hero-content {
    width: 100%;
    padding: 3rem 1.5rem;
    align-items: center;
    text-align: center;
  }

  .hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
  }

  .hero-background::before {
    clip-path: none;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    max-width: 400px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    gap: 0.75rem;
  }

  .hero-button {
    width: 100%;
  }

  /* Hero stats removed pending documentation verification */
}

/* Remove floating shapes as they're distracting */
.hero-shapes {
  display: none;
} 