/* Custom styles for Sentryn website - Optimized version */

/* Base styles and CSS reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: #4f46e5;
}

a:hover {
  color: #4338ca;
}

img {
  max-width: 100%;
  height: auto;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5em;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

.text-center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #4f46e5;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #4338ca;
  transform: translateY(-2px);
}

/* Large buttons for landing page */
.btn-large {
  padding: 1rem 2rem;
  font-size: 1.25rem;
  border-radius: 8px;
  background-color: #fbbf24;
  color: #7c2d12;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  white-space: normal;
  word-wrap: break-word;
  line-height: 1.3;
  text-align: center;
  display: block;
  width: 100%;
  min-height: 60px;
  align-items: center;
  justify-content: center;
}

.btn-large:hover {
  background-color: #f59e0b;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
  .btn-large {
    display: inline-block;
    width: auto;
    padding: 1rem 2rem;
  }
}

@media (max-width: 767px) {
  .btn-large {
    padding: 1.25rem 1.5rem;
    font-size: 1.1rem;
    min-height: 70px;
  }
}

/* Header styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #111827;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 32px;
  width: auto;
}

.logo-text {
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

.desktop-nav {
  display: none;
}

.nav-link {
  color: #d1d5db;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-button {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-icon {
  height: 24px;
  width: 24px;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 300px;
  background-color: #111827;
  color: white;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1100;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
}

.mobile-menu-active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #374151;
}

.mobile-menu-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
}

.close-icon {
  height: 24px;
  width: 24px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.mobile-nav-link {
  color: #d1d5db;
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
}

/* Main content */
main {
  margin-top: 80px;
}

/* Hero sections */
.hero-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #e11d48 0%, #7c2d12 100%);
  color: white;
  text-align: center;
}

.hero-news-feed {
  padding: 4rem 0;
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
}

.hero-title {
  text-align: center;
  margin-bottom: 1rem;
  color: #1e293b;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: #475569;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: #1e293b;
  line-height: 1.6;
}

/* News feed */
.news-feed-container {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px 0;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.news-feed-container::-webkit-scrollbar {
  display: none;
}

.news-item {
  flex: 0 0 350px;
  background-color: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.news-date {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.news-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #1e293b;
}

.news-excerpt {
  color: #64748b;
  margin-bottom: 1.5rem;
}

.read-more {
  color: #4f46e5;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.read-more:hover {
  color: #4338ca;
}

.scroll-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.scroll-btn {
  background-color: #4f46e5;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.scroll-btn:hover {
  background-color: #4338ca;
  transform: scale(1.1);
}

/* Section styles */
.section {
  padding: 5rem 0;
}

.section-header {
  margin-bottom: 3rem;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: #1e293b;
}

.section-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* Services section */
.services-section {
  padding: 5rem 0;
  background-color: #f8fafc;
}

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

.service-card {
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
  background-color: #eef2ff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.icon {
  width: 30px;
  height: 30px;
  color: #4f46e5;
}

.service-title {
  margin-bottom: 1rem;
  color: #1e293b;
}

.service-description {
  color: #64748b;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
}

.service-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #64748b;
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4f46e5;
  font-weight: bold;
}

/* About section */
.about-section {
  padding: 5rem 0;
  background-color: white;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.expertise-card {
  background-color: #f1f5f9;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
}

.expertise-title {
  margin-bottom: 1rem;
  color: #1e293b;
}

.expertise-description {
  color: #4b5563;
}

.approach-box {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  border-radius: 8px;
  padding: 3rem;
  text-align: center;
  color: white;
}

.approach-title {
  margin-bottom: 1.5rem;
  color: white;
}

.approach-description {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  color: #e2e8f0;
}

/* Case studies section */
.case-studies-section {
  padding: 5rem 0;
  background-color: #f8fafc;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.case-study-card {
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.case-study-title {
  margin-bottom: 1rem;
  color: #1e293b;
}

.case-study-description {
  color: #64748b;
  margin-bottom: 1.5rem;
}

.case-study-results {
  list-style: none;
  margin-bottom: 1.5rem;
}

.case-study-results li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #64748b;
}

.case-study-results li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #4f46e5;
  font-weight: bold;
}

/* Testimonials section */
.testimonials-section {
  padding: 5rem 0;
  background-color: white;
}

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

.testimonial-card {
  background-color: #f8fafc;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.star {
  width: 20px;
  height: 20px;
  color: #fbbf24;
}

.testimonial-text {
  font-style: italic;
  color: #64748b;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-weight: 600;
  color: #1e293b;
}

/* Contact section */
.contact-section {
  padding: 5rem 0;
  background-color: #f8fafc;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-form-container {
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #1e293b;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

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

.submit-button {
  background-color: #4f46e5;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-button:hover {
  background-color: #4338ca;
}

/* Landing page specific styles */
.benefits-section {
  background-color: #f8fafc;
}

.benefits-list {
  list-style: none;
  max-width: 800px;
  margin: 2rem auto;
  text-align: left;
}

.benefits-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.6;
}

.benefits-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #e11d48;
  font-weight: bold;
  font-size: 1.5rem;
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
}

.step-card {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #e11d48;
  color: white;
  border-radius: 50%;
  line-height: 40px;
  font-weight: bold;
  margin-bottom: 1rem;
}

.form-section {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.checkbox-group input {
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

.urgency-section {
  background-color: #fffbeb;
  text-align: center;
  padding: 3rem 0;
}

.urgency-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ca8a04;
  max-width: 800px;
  margin: 0 auto;
}

.why-section {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.faq-section {
  background-color: #f0f9ff;
}

.faq-item {
  margin-bottom: 1.5rem;
  text-align: left;
}

.faq-question {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1e293b;
}

.faq-answer {
  color: #64748b;
  line-height: 1.6;
}

.cost-section {
  background-color: #fff1f2;
}

.final-cta-section {
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  text-align: center;
  padding: 5rem 0;
}

.final-cta-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

.final-cta-text {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: #64748b;
  line-height: 1.6;
}

/* Contact info */
.contact-info-container {
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-info-title {
  margin-bottom: 1.5rem;
  color: #1e293b;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  background-color: #eef2ff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon .icon {
  width: 20px;
  height: 20px;
  color: #4f46e5;
}

.contact-text {
  flex: 1;
}

.contact-label {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #1e293b;
}

.contact-value {
  color: #64748b;
}

.business-hours {
  margin-top: 2rem;
}

.hours-list {
  list-style: none;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.hours-item:last-child {
  border-bottom: none;
}

/* Footer */
.footer {
  background-color: #111827;
  color: #d1d5db;
  padding: 4rem 0 2rem;
}

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

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.footer-logo {
  height: 32px;
  width: auto;
}

.footer-logo-text {
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

.footer-description {
  margin-bottom: 1.5rem;
  color: #9ca3af;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: #9ca3af;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: white;
}

.social-icon {
  width: 24px;
  height: 24px;
}

.footer-title {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-links,
.footer-contact {
  list-style: none;
}

.footer-link,
.footer-contact-item {
  margin-bottom: 0.75rem;
}

.footer-link {
  color: #9ca3af;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: white;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #9ca3af;
}

.footer-contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.copyright {
  color: #9ca3af;
  font-size: 0.875rem;
}

.footer-bottom-link {
  color: #9ca3af;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.footer-bottom-link:hover {
  color: white;
}

/* Case study specific styles */
.case-study-content {
  padding: 3rem 0;
}

.case-study-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.case-study-text {
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.case-study-section-title {
  margin-top: 2rem;
  color: #1e293b;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.case-study-subtitle {
  margin-top: 1.5rem;
  color: #1e293b;
  font-weight: 600;
}

.case-study-list {
  list-style: none;
  margin: 1rem 0;
}

.case-study-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #64748b;
}

.case-study-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #4f46e5;
  font-weight: bold;
}

.case-study-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.result-card {
  background-color: #f8fafc;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.result-card h4 {
  margin: 0 0 0.5rem;
  color: #1e293b;
  font-size: 1rem;
}

.result-value {
  font-size: 2rem;
  font-weight: 700;
  color: #4f46e5;
  margin: 0.5rem 0;
}

.case-study-image-placeholder {
  background-color: #f1f5f9;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  margin: 1.5rem 0;
  border: 2px dashed #cbd5e1;
}

.case-study-image-placeholder p {
  color: #94a3b8;
  font-style: italic;
  margin: 0;
}

.highlight-box {
  background-color: #f0f9ff;
  border-left: 4px solid #3b82f6;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

.highlight-box.success-box {
  background-color: #f0fdf4;
  border-left-color: #10b981;
}

.highlight-box.results-box {
  background-color: #fff7ed;
  border-left-color: #f97316;
}

.highlight-title {
  margin-top: 0;
  color: #1e293b;
  font-size: 1.25rem;
}

.highlight-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.highlight-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #64748b;
}

.highlight-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

.highlight-box.success-box .highlight-list li:before {
  color: #10b981;
}

.results-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.result-item {
  text-align: center;
}

.result-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
}

.result-label {
  display: block;
  font-size: 0.875rem;
  color: #64748b;
}

/* Utility classes */
.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hero-gradient {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  }
}

/* Custom scrollbar styles */
.scrollbar-thick::-webkit-scrollbar {
  height: 12px;
}

.scrollbar-thick::-webkit-scrollbar-thumb {
  background-color: #4b5563;
  border-radius: 6px;
}

.scrollbar-thick::-webkit-scrollbar-track {
  background: #e5e7eb;
}

/* Firefox */
.scrollbar-thick {
  scrollbar-width: thin;
  scrollbar-color: #4b5563 #e5e7eb;
}

/* Responsive styles */
@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
    align-items: center;
  }
  
  .mobile-menu-button {
    display: none;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .news-item {
    flex: 0 0 400px;
  }
  
  .contact-container {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  
  /* Landing page responsive styles */
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .steps-container {
    flex-direction: column;
    align-items: center;
  }
  
  .step-card {
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  .header-container {
    padding: 1rem 40px;
  }
  
  .container {
    padding: 0 40px;
  }
  
  .hero-news-feed {
    padding: 6rem 0;
  }
  
  .news-item {
    flex: 0 0 450px;
  }
  
  .approach-box {
    padding: 4rem;
  }
}