/* Global Styles */
:root {
  --primary-color: #2c5282;
  --secondary-color: #4a90e2;
  --accent-color: #f6ad55;
  --text-color: #333333;
  --text-light: #666666;
  --background-color: #ffffff;
  --background-alt: #f7fafc;
  --border-color: #e2e8f0;
  --success-color: #48bb78;
  --error-color: #e53e3e;
  --warning-color: #ed8936;
  --info-color: #4299e1;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --transition: all 0.3s ease;
  --container-width: 1200px;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--background-color);
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

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

ul {
  list-style: none;
}

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

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--text-light);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  line-height: 1;
}

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

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

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

.btn.secondary:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

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

/* Header and Navigation */
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: 1.5rem 1.5rem;
}

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

nav ul {
  display: flex;
}

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

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

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

nav ul li a:hover:after,
nav ul li a.active:after {
  width: 100%;
}

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

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 5rem 0;
  background-color: var(--background-alt);
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-image {
  flex: 1;
  position: relative;
}

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

/* Features Section */
.features {
  padding: 5rem 0;
}

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

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

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

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

.feature-card h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

/* Checklist Section */
.checklist-section {
  padding: 5rem 0;
  background-color: var(--background-alt);
}

.checklist {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background-color: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.checklist-item i {
  color: var(--success-color);
  font-size: 1.2rem;
  margin-top: 0.25rem;
}

/* Future Quote Section */
.future-quote {
  padding: 5rem 0;
}

.quote-box {
  background-color: var(--primary-color);
  color: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.quote-box blockquote {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.quote-box cite {
  font-style: normal;
  font-weight: 600;
  display: block;
  text-align: right;
}

/* Latest Posts Section */
.latest-posts {
  padding: 5rem 0;
  background-color: var(--background-alt);
}

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

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

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

.post-image {
  height: 200px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.post-card:hover .post-image img {
  transform: scale(1.05);
}

.post-content {
  padding: 1.5rem;
}

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

.read-more {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 1rem;
}

.read-more i {
  margin-left: 0.5rem;
  transition: var(--transition);
}

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

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

/* Footer */
footer {
  background-color: #1a365d;
  color: white;
  padding: 5rem 0 2rem;
}

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

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 50px;
  width: auto;
  background-color: white;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
}

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

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
}

.footer-col h4 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col h4:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: white;
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-info li i {
  color: var(--accent-color);
  margin-top: 0.25rem;
}

.contact-info li a {
  color: rgba(255, 255, 255, 0.8);
}

.contact-info li a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background-color: white;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content {
  width: 100%;
}

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

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

.cookie-btn {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

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

.cookie-btn.customize {
  background-color: #f1f5f9;
  color: var(--text-color);
}

.cookie-btn.decline {
  background-color: #f1f5f9;
  color: var(--text-color);
}

.cookie-link {
  font-size: 0.875rem;
  text-decoration: underline;
}

/* Page Header */
.page-header {
  background-color: var(--primary-color);
  color: white;
  padding: 5rem 0 3rem;
  text-align: center;
}

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

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
}

/* Blog Page Styles */
.blog-content {
  padding: 5rem 0;
}

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

.blog-post {
  background-color: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

.blog-post .post-image {
  height: 250px;
}

.post-details {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-light);
  padding: 1rem 1.5rem 0;
}

.post-category {
  background-color: var(--accent-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
}

.blog-post h2 {
  font-size: 1.5rem;
  padding: 0 1.5rem;
  margin-bottom: 0.75rem;
}

.blog-post p {
  padding: 0 1.5rem;
  margin-bottom: 1.5rem;
}

.blog-post .btn {
  margin: 0 1.5rem 1.5rem;
}

/* Subscribe Section */
.subscribe {
  padding: 5rem 0;
  background-color: var(--primary-color);
  color: white;
}

.subscribe-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.subscribe-content h2 {
  color: white;
  margin-bottom: 1rem;
}

.subscribe-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.subscribe-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.subscribe-form input {
  flex: 1;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  font-size: 1rem;
}

.subscribe-form button {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background-color: var(--accent-color);
}

/* Blog Post Page Styles */
.blog-header {
  text-align: left;
}

.blog-header .container {
  max-width: 800px;
}

.post-meta {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.post-meta i {
  margin-right: 0.5rem;
}

.blog-post-content {
  padding: 5rem 0;
}

.blog-post-content .container {
  max-width: 800px;
}

.post-image-full {
  margin-bottom: 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.post-intro {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

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

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

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

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

.post-content ul {
  list-style-type: disc;
}

.post-content ol {
  list-style-type: decimal;
}

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

.post-tags span {
  font-weight: 600;
}

.post-tags a {
  background-color: #f1f5f9;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--text-color);
  transition: var(--transition);
}

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

.post-share {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.post-share span {
  font-weight: 600;
}

.post-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #f1f5f9;
  border-radius: 50%;
  color: var(--text-color);
  transition: var(--transition);
}

.post-share a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin: 3rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.post-navigation a {
  display: flex;
  align-items: center;
  font-weight: 600;
}

.post-navigation-prev a i {
  margin-right: 0.5rem;
}

.post-navigation-next a i {
  margin-left: 0.5rem;
}

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

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

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.related-post {
  background-color: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.related-post-image {
  height: 150px;
  overflow: hidden;
}

.related-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.related-post:hover .related-post-image img {
  transform: scale(1.05);
}

.related-post h4 {
  padding: 1rem 1rem 0.5rem;
  font-size: 1.1rem;
}

.related-post a {
  display: inline-block;
  padding: 0 1rem 1rem;
  font-weight: 600;
  color: var(--primary-color);
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background-color: var(--primary-color);
  color: white;
}

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

.cta-content h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

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

.cta-content .btn:hover {
  background-color: var(--accent-color);
  color: white;
}

/* Services Page Styles */
.services-overview {
  padding: 5rem 0;
}

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

.service-category {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

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

.service-category h3 {
  margin-bottom: 1rem;
}

.service-detail {
  padding: 5rem 0;
}

.service-detail.alternate {
  background-color: var(--background-alt);
}

.service-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
}

.service-content.reverse {
  flex-direction: row-reverse;
}

.service-text {
  flex: 1;
}

.service-tagline {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.feature-list, .use-case-list {
  margin-bottom: 2rem;
}

.feature-list li, .use-case-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.feature-list li i {
  color: var(--success-color);
  margin-top: 0.25rem;
}

.use-case-list li i {
  color: var(--primary-color);
  margin-top: 0.25rem;
}

.service-image {
  flex: 1;
}

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

.service-plans h3 {
  text-align: center;
  margin-bottom: 2.5rem;
}

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

.plan-card {
  background-color: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
}

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

.plan-card.popular {
  border: 2px solid var(--accent-color);
  transform: scale(1.05);
}

.plan-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--accent-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
}

.plan-header {
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.plan-header h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-price .currency {
  font-size: 1.5rem;
  margin-right: 0.25rem;
  align-self: flex-start;
  margin-top: 0.5rem;
}

.plan-price .period {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 400;
  align-self: flex-end;
  margin-bottom: 0.5rem;
}

.plan-features {
  padding: 2rem;
}

.plan-features ul {
  list-style-type: none;
}

.plan-features ul li {
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--border-color);
}

.plan-features ul li:last-child {
  border-bottom: none;
}

.plan-footer {
  padding: 0 2rem 2rem;
  text-align: center;
}

.cloud-features {
  margin-top: 3rem;
}

.cloud-features h3 {
  text-align: center;
  margin-bottom: 2.5rem;
}

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

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

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

.cloud-feature .feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.cloud-feature h4 {
  margin-bottom: 1rem;
}

.config-table-wrapper {
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.config-table {
  width: 100%;
  border-collapse: collapse;
}

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

.config-table th {
  background-color: var(--background-alt);
  font-weight: 600;
}

.custom-note {
  text-align: center;
  font-style: italic;
  color: var(--text-light);
}

.security-addons {
  margin: 2rem 0;
}

.addon {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.addon:last-child {
  border-bottom: none;
}

.addon-name {
  font-weight: 600;
}

.addon-price {
  color: var(--primary-color);
}

.compliance-certifications {
  margin-top: 4rem;
}

.compliance-certifications h3 {
  text-align: center;
  margin-bottom: 2.5rem;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.certification img {
  height: 100px;
  width: auto;
  margin-bottom: 1rem;
}

.certification p {
  font-weight: 600;
}

.service-comparison {
  padding: 5rem 0;
  background-color: var(--background-alt);
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-bottom: 3rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

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

.comparison-table th:first-child, .comparison-table td:first-child {
  text-align: left;
}

.comparison-table th {
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
}

.comparison-table tr:nth-child(even) {
  background-color: rgba(74, 144, 226, 0.05);
}

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

.comparison-cta p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.testimonials {
  padding: 5rem 0;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonial-slider {
  max-width: 900px;
  margin: 0 auto;
}

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

.testimonial-content {
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0 1.5rem;
}

.testimonial-content:before, .testimonial-content:after {
  content: '"';
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
  line-height: 1;
}

.testimonial-content:before {
  top: -1rem;
  left: -0.5rem;
}

.testimonial-content:after {
  bottom: -2.5rem;
  right: -0.5rem;
}

.testimonial-content p {
  font-style: italic;
  font-size: 1.1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  margin-bottom: 0.25rem;
}

.author-info p {
  color: var(--text-light);
  font-size: 0.875rem;
}

/* About Page Styles */
.about-intro {
  padding: 5rem 0;
}

.about-grid {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.about-content {
  flex: 1;
}

.about-image {
  flex: 1;
}

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

.mission-values {
  padding: 5rem 0;
  background-color: var(--background-alt);
}

.mission-box {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  padding: 2.5rem;
  background-color: var(--primary-color);
  color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.mission-box h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.mission-box p {
  font-size: 1.2rem;
}

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

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

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

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

.team-section {
  padding: 5rem 0;
}

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

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

.member-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-title {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.member-bio {
  font-size: 0.9rem;
}

.infrastructure-section {
  padding: 5rem 0;
  background-color: var(--background-alt);
}

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

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

.infrastructure-item h3 {
  margin-bottom: 1rem;
}

.infrastructure-item ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}

.infrastructure-item ul li {
  margin-bottom: 0.5rem;
}

.infrastructure-stats {
  display: flex;
  justify-content: space-around;
  text-align: center;
  background-color: var(--primary-color);
  padding: 3rem;
  border-radius: var(--radius-lg);
  color: white;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
}

.clients-section {
  padding: 5rem 0;
}

.client-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 4rem;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background-color: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.client-logo:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.client-logo img {
  height: 60px;
  width: auto;
  filter: grayscale(100%);
  transition: var(--transition);
}

.client-logo:hover img {
  filter: grayscale(0%);
}

.client-stats {
  display: flex;
  justify-content: space-around;
  text-align: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.client-stat {
  padding: 2rem;
  background-color: var(--background-alt);
  border-radius: var(--radius-md);
  min-width: 200px;
}

.csr-section {
  padding: 5rem 0;
  background-color: var(--background-alt);
}

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

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

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

.csr-area h3 {
  margin-bottom: 1rem;
}

.csr-area ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-top: 1rem;
}

.csr-area ul li {
  margin-bottom: 0.5rem;
}

/* Contact Page Styles */
.contact-section {
  padding: 5rem 0;
}

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

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-methods {
  margin-top: 2.5rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.contact-method:last-child {
  border-bottom: none;
}

.method-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

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

.method-details p {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.method-details a {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hours {
  font-size: 0.875rem;
  color: var(--text-light);
  font-style: italic;
}

.emergency-support {
  margin-top: 3rem;
  padding: 2rem;
  background-color: #fef2f2;
  border-left: 4px solid var(--error-color);
  border-radius: var(--radius-md);
}

.emergency-support h3 {
  color: var(--error-color);
  margin-bottom: 1rem;
}

.emergency-phone {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--error-color);
  margin: 1rem 0;
}

.emergency-note {
  font-size: 0.875rem;
  font-style: italic;
}

.contact-form-container h2 {
  margin-bottom: 1rem;
}

.contact-form-container > p {
  margin-bottom: 2rem;
  color: var(--text-light);
}

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

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

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

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.checkbox-group input {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-group label {
  font-weight: 400;
  font-size: 0.875rem;
  margin-bottom: 0;
}

.map-section {
  padding: 5rem 0;
  background-color: var(--background-alt);
}

.map-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.location {
  background-color: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.location h3 {
  padding: 1.5rem 1.5rem 0;
}

.location address {
  padding: 0.5rem 1.5rem 1.5rem;
  font-style: normal;
  color: var(--text-light);
}

.location-map img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.faq-section {
  padding: 5rem 0;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

.faq-item h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

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

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

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

.modal-icon {
  font-size: 4rem;
  color: var(--success-color);
  margin-bottom: 1.5rem;
}

.modal-content h2 {
  margin-bottom: 1rem;
}

.modal-content p {
  margin-bottom: 2rem;
}

/* Policy Pages */
.policy-content {
  padding: 5rem 0;
}

.policy-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.policy-toc {
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 2rem;
  background-color: var(--background-alt);
  border-radius: var(--radius-md);
}

.policy-toc h2 {
  margin-bottom: 1.5rem;
}

.policy-toc ul {
  list-style-type: none;
}

.policy-toc ul li {
  margin-bottom: 0.5rem;
}

.policy-toc ul li a {
  color: var(--text-color);
}

.policy-toc ul li a:hover {
  color: var(--primary-color);
}

.policy-section {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.policy-section h2 {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
}

.policy-section h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-section ul, .policy-section ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.policy-section ul li, .policy-section ol li {
  margin-bottom: 0.5rem;
}

.refund-steps {
  background-color: var(--background-alt);
  padding: 2rem;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

.refund-steps h3 {
  margin-top: 0;
}

.contact-details {
  background-color: var(--background-alt);
  padding: 2rem;
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .container {
    padding: 0 3rem;
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content, .hero-image {
    width: 100%;
  }
  
  .service-content {
    flex-direction: column;
  }
  
  .service-content.reverse {
    flex-direction: column;
  }
  
  .service-text, .service-image {
    width: 100%;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .about-grid {
    flex-direction: column;
  }
  
  .about-content, .about-image {
    width: 100%;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  header .container {
    flex-wrap: wrap;
  }
  
  nav {
    display: none;
    width: 100%;
    margin-top: 1rem;
  }
  
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  nav ul li {
    margin: 0.5rem 0;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .posts-grid, .blog-grid, .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .infrastructure-stats, .client-stats {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1.5rem;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.35rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .post-navigation {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
}
