/* Base styling */
:root {
  --primary-color: #1f3b63;
  --secondary-color: #3a70b2;
  --accent-color: #c9def2;
  --success-color: #34a853;
  --warning-color: #fbbc05;
  --error-color: #ea4335;
  --text-primary: #333333;
  --text-secondary: #555555;
  --text-light: #ffffff;
  --background: #f8f9fa;
  --card-bg: #ffffff;
  --border-radius: 8px;
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 15px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --red-accent: #ea4335;
}

* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html, body {
  height: 100%;
  font-family: 'SF Pro Display', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--background);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.5;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary-color);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  margin-top: 32px;
}

h3 {
  font-size: 1.5rem;
  margin-top: 24px;
}

p {
  margin-bottom: 16px;
  line-height: 1.6;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition);
}

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

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

/* Header */
header {
  background: #fff;
  position: static;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  box-shadow: var(--shadow-sm);
  border-bottom: 2px solid var(--red-accent);
}

.company-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.company-logo {
  height: 24px;
  width: auto;
}

.company-text {
  display: flex;
  flex-direction: column;
}

.company-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.company-tagline {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Main Content */
main {
  padding: 40px 20px;
}

.section {
  margin-bottom: 40px;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: var(--border-radius);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.section.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
}

.section-header::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--red-accent);
  margin: 20px auto 0;
}

.card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 24px;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
  border: 1px solid #eee;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 48px 24px;
  text-align: center;
  color: var(--text-light);
  margin: 40px 0;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--red-accent);
}

.cta h2 {
  color: var(--text-light);
  margin-bottom: 16px;
}

.contact-reveal {
  display: none;
  margin-top: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-reveal a {
  color: var(--accent-color);
  font-weight: 600;
}

.contact-reveal a:hover {
  color: var(--text-light);
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--text-light);
  color: var(--primary-color);
  border: none;
}

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

/* Footer */
footer {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 48px 24px 24px;
  border-top: 4px solid var(--red-accent);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column h3 {
  color: var(--text-light);
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}

.social-links a:hover {
  background-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  header {
    padding: 10px 16px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }
}
