/* 
  BahrainConnect Stylesheet
  A modern, responsive design for a mobile services blog focused on Bahrain
  Version: 1.0
*/

/* ===== Base Styles ===== */
:root {
  --primary-color: #0062cc;
  --primary-light: #3a7bd5;
  --primary-dark: #004a9f;
  --secondary-color: #ff7200;
  --secondary-light: #ff9640;
  --secondary-dark: #d25e00;
  --text-color: #333333;
  --text-light: #666666;
  --background-color: #ffffff;
  --background-alt: #f5f8fa;
  --border-color: #e0e0e0;
  --success-color: #28a745;
  --error-color: #dc3545;
  --warning-color: #ffc107;
  --font-primary: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-heading: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --transition-speed: 0.3s;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
}

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

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--text-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

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

section {
  padding: 4rem 0;
}

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition-speed) ease, transform 0.2s ease;
  border: none;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.btn:hover {
  background-color: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.center {
  text-align: center;
}

.hidden {
  display: none;
}

/* ===== Header ===== */
header {
  background-color: white;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo img {
  height: 60px;
  width: auto;
}

nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

nav ul li {
  margin-left: 1.5rem;
}

nav ul li a {
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

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

nav ul li a.active {
  color: var(--primary-color);
}

nav ul li a.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

/* ===== Hero Section ===== */
.hero {
  background: linear-gradient(rgba(0, 98, 204, 0.9), rgba(58, 123, 213, 0.9)), url('images/1.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 6rem 0;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: white;
}

.hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

/* ===== Features Section ===== */
.features {
  background-color: var(--background-alt);
}

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

.feature-card {
  background-color: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.icon {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
}

/* ===== Quote Section ===== */
.quote-section {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.quote-section h2 {
  color: white;
}

blockquote {
  font-size: 1.25rem;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 0 2rem;
}

blockquote:before {
  content: '\201C';
  font-size: 4rem;
  position: absolute;
  left: 0;
  top: -20px;
  opacity: 0.3;
}

blockquote:after {
  content: '\201D';
  font-size: 4rem;
  position: absolute;
  right: 0;
  bottom: -50px;
  opacity: 0.3;
}

blockquote cite {
  display: block;
  margin-top: 1rem;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
}

/* ===== Poll Section ===== */
.poll-section {
  background-color: var(--background-alt);
}

.poll-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.poll-option {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.poll-option input[type="radio"] {
  margin-right: 0.5rem;
}

.poll-results {
  margin-top: 2rem;
}

.result-bar {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.result-bar span {
  flex: 0 0 30%;
}

.bar {
  flex: 1;
  height: 20px;
  background-color: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 1rem;
}

.fill {
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 10px;
}

/* ===== Recent Posts ===== */
.recent-posts {
  background-color: white;
}

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

.post-card {
  background-color: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

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

.post-content {
  padding: 1.5rem;
}

.post-content h3 {
  margin-bottom: 0.5rem;
}

.post-content p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.read-more {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
}

.read-more:after {
  content: '\2192';
  margin-left: 0.25rem;
  transition: transform var(--transition-speed) ease;
}

.read-more:hover:after {
  transform: translateX(5px);
}

/* ===== Footer ===== */
footer {
  background-color: #242424;
  color: white;
  padding: 4rem 0 2rem;
}

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

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-about p {
  color: #b0b0b0;
}

.footer-links h3, .footer-policies h3, .footer-contact h3 {
  color: white;
  margin-bottom: 1.5rem;
}

.footer-links ul, .footer-policies ul {
  list-style: none;
  padding: 0;
}

.footer-links li, .footer-policies li {
  margin-bottom: 0.75rem;
}

.footer-links a, .footer-policies a {
  color: #b0b0b0;
  transition: color var(--transition-speed) ease;
}

.footer-links a:hover, .footer-policies a:hover {
  color: white;
}

.footer-contact p {
  color: #b0b0b0;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.footer-contact p svg {
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icons a {
  color: #b0b0b0;
  transition: color var(--transition-speed) ease;
}

.social-icons a:hover {
  color: white;
}

.copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  color: #b0b0b0;
}

/* ===== Cookie Notice ===== */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  padding: 1rem 0;
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-content p {
  flex: 1 1 100%;
  margin-bottom: 1rem;
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
}

.cookie-content a {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* ===== Page Header ===== */
.page-header {
  background: linear-gradient(rgba(0, 98, 204, 0.9), rgba(58, 123, 213, 0.9)), url('images/2.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 4rem 0;
}

.page-header h1 {
  color: white;
  margin-bottom: 1rem;
}

/* ===== Blog Page ===== */
.blog-content {
  padding: 4rem 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
}

.blog-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-color: white;
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

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

.blog-card-content {
  padding: 1.5rem;
}

.meta {
  display: flex;
  gap: 1rem;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.meta .date, .meta .category {
  display: flex;
  align-items: center;
}

.meta .date:before {
  content: '\1F4C5';
  margin-right: 0.25rem;
}

.meta .category:before {
  content: '\1F4C1';
  margin-right: 0.25rem;
}

/* ===== Blog Post ===== */
.blog-post {
  padding: 4rem 0;
}

.post-header {
  margin-bottom: 2rem;
}

.post-meta {
  display: flex;
  gap: 1.5rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.post-meta .date:before {
  content: '\1F4C5';
  margin-right: 0.25rem;
}

.post-meta .category:before {
  content: '\1F4C1';
  margin-right: 0.25rem;
}

.post-meta .reading-time:before {
  content: '\231A';
  margin-right: 0.25rem;
}

.post-featured-image {
  margin-bottom: 2rem;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.post-featured-image img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.post-content {
  max-width: 800px;
  margin: 0 auto;
}

.post-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.post-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.post-content p, .post-content ul, .post-content ol {
  margin-bottom: 1.5rem;
}

.post-content ul li, .post-content ol li {
  margin-bottom: 0.5rem;
}

.tags {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.tags span {
  font-weight: 600;
}

.tags a {
  background-color: var(--background-alt);
  color: var(--text-color);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: background-color var(--transition-speed) ease;
}

.tags a:hover {
  background-color: var(--primary-light);
  color: white;
}

.share-post {
  margin: 3rem 0;
  text-align: center;
}

.social-share {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.social-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  transition: transform var(--transition-speed) ease;
}

.social-share a:hover {
  transform: translateY(-3px);
}

.facebook {
  background-color: #3b5998;
}

.twitter {
  background-color: #1da1f2;
}

.linkedin {
  background-color: #0077b5;
}

.email {
  background-color: #db4437;
}

.related-posts {
  margin-top: 4rem;
}

.related-posts h3 {
  text-align: center;
  margin-bottom: 2rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.related-post {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.related-post:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.related-post img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.related-post h4 {
  padding: 1rem;
  font-size: 1rem;
  margin-bottom: 0;
}

/* ===== Services Page ===== */
.services-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

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

.service-card {
  background-color: white;
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  color: var(--primary-color);
}

.operator-comparison {
  background-color: var(--background-alt);
}

.comparison-table {
  overflow-x: auto;
  margin-top: 2rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

th, td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

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

tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.02);
}

.table-note {
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 1rem;
}

.service-cta {
  text-align: center;
  background-color: var(--primary-color);
  color: white;
}

.service-cta h2 {
  color: white;
}

/* ===== About Page ===== */
.about-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: center;
}

.about-content h2 {
  margin-top: 2.5rem;
}

.about-content h2:first-child {
  margin-top: 0;
}

.about-image img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.team-section {
  background-color: var(--background-alt);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-member {
  background-color: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.team-member img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-member h3 {
  margin: 1.5rem 0 0.25rem;
}

.team-member p {
  padding: 0 1.5rem;
  margin-bottom: 1.5rem;
}

.team-member p:first-of-type {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.member-social a {
  color: var(--text-light);
  transition: color var(--transition-speed) ease;
}

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

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

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.value-card {
  background-color: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-speed) ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.recognition-section {
  background-color: var(--background-alt);
  text-align: center;
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.recognition-item {
  background-color: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.recognition-icon {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.cta-section {
  text-align: center;
  background: linear-gradient(rgba(0, 98, 204, 0.9), rgba(58, 123, 213, 0.9)), url('images/3.jpg');
  background-size: cover;
  background-position: center;
  color: white;
}

.cta-section h2 {
  color: white;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* ===== Contact Page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.contact-methods {
  margin: 2rem 0;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  flex-shrink: 0;
  margin-right: 1rem;
  color: var(--primary-color);
}

.contact-details h3 {
  margin-bottom: 0.5rem;
}

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

.business-hours {
  background-color: var(--background-alt);
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.business-hours table {
  width: 100%;
}

.business-hours td {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.business-hours td:last-child {
  text-align: right;
}

.contact-form-container {
  background-color: white;
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.contact-form {
  margin-top: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(0, 98, 204, 0.2);
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.form-check input {
  margin-top: 0.3rem;
  margin-right: 0.75rem;
}

.map-section {
  background-color: var(--background-alt);
  text-align: center;
}

.map-container {
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 2rem;
  box-shadow: var(--shadow-md);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  text-align: left;
}

.faq-item {
  background-color: white;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

.faq-item h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

/* ===== Modal ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 1100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.close-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
}

.thank-you-message {
  text-align: center;
}

.thank-you-message svg {
  color: var(--success-color);
  margin-bottom: 1rem;
}

.thank-you-message p {
  margin-bottom: 1.5rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero {
    padding: 5rem 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    order: -1;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
  }
  
  .logo {
    margin-bottom: 1rem;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  nav ul li {
    margin: 0 0.75rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 576px) {
  section {
    padding: 3rem 0;
  }
  
  .hero {
    padding: 4rem 0;
  }
  
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .feature-grid, .post-grid, .blog-grid, .team-grid, .values-grid, .recognition-grid, .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .social-share {
    flex-wrap: wrap;
    justify-content: center;
  }
}
