:root {
  --primary: #0a4d8c;
  --secondary: #3498db;
  --dark: #2c3e50;
  --medium: #7f8c8d;
  --light: #ecf0f1;
  --white: #ffffff;
  --success: #27ae60;
}

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

body {
  font-family: "Open Sans", sans-serif;
  color: var(--dark);
  line-height: 1.6;
}

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

/* Header */
header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

a.inline {
  display: inline-block !important;
}

.d-none {
  display: none !important;
}

.bg-green-100 {
  margin-bottom: 1rem;
  padding: 1.2rem;
  color: #fff;
  font-weight: 600;
  background-color: #070;
}

.bg-red-100 {
  margin-bottom: 1rem;
  padding: 1.2rem;
  color: #fff;
  font-weight: 600;
  background-color: #700;
}

.logo {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}
.logo img {
  max-width: 180px;
  min-width: 120px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-links li {
  display: flex;
  align-items: center;
}

.nav-links a {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero p {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.btn {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  margin-left: 16px;
}

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

.btn-teleassistance {
  background: var(--success) !important;
  color: var(--white) !important;
  padding: 10px 18px !important;
  font-size: 14px !important;
  border-radius: 4px;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.btn-teleassistance:hover {
  background: #229954 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-teleassistance i {
  font-size: 16px;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: var(--light);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-title p {
  font-size: 18px;
  color: var(--medium);
  max-width: 600px;
  margin: 0 auto;
}

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

.service-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  color: var(--white);
}

.service-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--dark);
}

.service-card p {
  color: var(--medium);
  margin-bottom: 20px;
}

.service-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-link:hover {
  color: var(--secondary);
}

/* About Section */
.about {
  padding: 80px 0;
  background: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--dark);
}

.about-text p {
  font-size: 16px;
  color: var(--medium);
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.stat-box {
  text-align: center;
  padding: 24px;
  background: var(--light);
  border-radius: 8px;
}

.stat-number {
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 14px;
  color: var(--medium);
  margin-top: 8px;
}

.about-image {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 8px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  color: rgba(255, 255, 255, 0.2);
}

/* Solutions Section */
.solutions {
  padding: 80px 0;
  background: var(--dark);
  color: var(--white);
}

.solutions .section-title h2,
.solutions .section-title p {
  color: var(--white);
}

.solutions .section-title p {
  opacity: 0.8;
}

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

.solution-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 32px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.solution-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--secondary);
}

.solution-item i {
  font-size: 36px;
  color: var(--secondary);
  margin-bottom: 16px;
}

.solution-item h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  margin-bottom: 12px;
}

.solution-item p {
  font-size: 14px;
  opacity: 0.8;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  text-align: center;
}

.cta h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 24px;
}

.cta p {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.95;
}

/* Footer */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 30px;
}

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

.footer-section h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--secondary);
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  transition: color 0.3s;
}

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

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

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* Contact Page */
.contact-page {
  padding: 80px 0;
  background: var(--light);
  min-height: calc(100vh - 500px);
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.contact-header p {
  font-size: 18px;
  color: var(--medium);
  max-width: 600px;
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Contact Info */
.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.info-card {
  background: var(--white);
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 16px;
}

.info-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.info-card p {
  color: var(--medium);
  font-size: 14px;
  margin-bottom: 8px;
}

.info-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

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

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.form-group {
  display: grid;
  grid-template-columns: 1fr;
}

.form-group.checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-group.checkbox input {
  width: auto;
  min-width: 20px;
}

.form-group label {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 8px;
  display: block;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: var(--dark);
  transition: all 0.3s;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 77, 140, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: "Open Sans", sans-serif;
}

.form-group select {
  appearance: none;
  background-image: url('data:image/svg+xml;charset=UTF-8,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"%3e%3cpolyline points="6 9 12 15 18 9"%3e%3c/polyline%3e%3c/svg%3e');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  padding-right: 40px;
}

.form-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
  cursor: pointer;
}

.form-group.checkbox label {
  margin-bottom: 0;
  cursor: pointer;
  font-weight: 400;
}

.form-group.checkbox a {
  color: var(--primary);
  text-decoration: underline;
}

.contact-form .btn {
  margin-top: 10px;
  width: 100%;
  text-align: center;
  border: none;
}

.form-message {
  padding: 12px 16px;
  border-radius: 6px;
  text-align: center;
  margin-top: 10px;
  display: none;
  font-weight: 600;
}

.form-message.success {
  display: block;
  background: rgba(39, 174, 96, 0.1);
  color: var(--success);
  border: 1px solid var(--success);
}

.form-message.error {
  display: block;
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  border: 1px solid #e74c3c;
}

/* Policy Pages */
.policy-page {
  padding: 80px 0;
  background: var(--light);
  min-height: calc(100vh - 500px);
}

/* 
.policy-header {
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 2px solid var(--secondary);
}

.policy-header h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.policy-header p {
  font-size: 16px;
  color: var(--medium);
  margin-bottom: 8px;
}

 */
.policy-content {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.policy-toc {
  background: rgba(10, 77, 140, 0.05);
  padding: 24px;
  border-left: 4px solid var(--primary);
  margin-bottom: 40px;
  border-radius: 4px;
}

.policy-toc h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}

.policy-toc ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
}

.policy-toc li a {
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
  padding: 8px 0;
  transition: all 0.3s;
  display: inline-block;
}

.policy-toc li a:hover {
  color: var(--secondary);
  padding-left: 8px;
}

.policy-section {
  /* margin-bottom: 40px; */
  /* padding-bottom: 40px; */
  /* border-bottom: 1px solid #e0e0e0; */
}

.policy-section:last-child {
  border-bottom: none;
}

.policy-section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  margin-top: 0;
  padding-top: 20px;
}

.policy-section h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-top: 20px;
  margin-bottom: 12px;
}

.policy-section p {
  color: var(--dark);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.policy-section a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.policy-section a:hover {
  text-decoration: underline;
  color: var(--secondary);
}

.policy-list {
  list-style: none;
  margin-bottom: 20px;
  padding-left: 0;
}

.policy-list li {
  padding-left: 24px;
  margin-bottom: 12px;
  position: relative;
  color: var(--dark);
  font-size: 15px;
  line-height: 1.6;
}

.policy-list li:before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 18px;
}

.policy-box {
  background: rgba(52, 152, 219, 0.05);
  border-left: 4px solid var(--secondary);
  padding: 20px;
  margin: 20px 0;
  border-radius: 4px;
}

.policy-box p {
  margin-bottom: 8px;
  font-size: 15px;
}

.policy-box p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  .btn-secondary {
    margin-left: 0;
    margin-top: 16px;
    display: block;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-image {
    height: 300px;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .contact-header h1 {
    font-size: 36px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 24px;
  }

  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="tel"],
  .form-group select,
  .form-group textarea {
    font-size: 16px;
  }
}

/* Service Pages */
.service-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
  opacity: 0.3;
}

.service-hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.service-hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.service-hero p {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.95;
}

/* Service Overview */
.service-overview {
  padding: 80px 0;
  background: var(--light);
}

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

.overview-card {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s;
}

.overview-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.overview-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 36px;
  color: var(--white);
}

.overview-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
}

.overview-card p {
  color: var(--medium);
  font-size: 15px;
  line-height: 1.6;
}

/* Service Features */
.service-features {
  padding: 80px 0;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.feature-item {
  background: var(--light);
  padding: 40px;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 20px;
}

.feature-item h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--dark);
  font-size: 14px;
  position: relative;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

/* Pricing Plans */
.support-levels {
  padding: 80px 0;
  background: var(--white);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  align-items: stretch;
}

.plan-card {
  background: var(--white);
  border: 2px solid #e0e0e0;
  padding: 40px 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
}

.plan-card.featured {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(10, 77, 140, 0.2);
  transform: scale(1.02);
}

.plan-card.featured:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: 0 12px 40px rgba(10, 77, 140, 0.3);
}

.plan-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.plan-price {
  font-size: 14px;
  color: var(--medium);
  margin-bottom: 24px;
  line-height: 1.6;
}

.plan-price strong {
  font-size: 28px;
  color: var(--primary);
  display: block;
  font-family: "Montserrat", sans-serif;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
  flex-grow: 1;
}

.plan-features li {
  padding: 12px 0;
  padding-left: 28px;
  color: var(--dark);
  font-size: 14px;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}

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

.plan-features i {
  position: absolute;
  left: 0;
  color: var(--success);
  font-size: 16px;
}

.plan-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Response Times */
.hosting-performance {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fb 0%, #f0f4f8 100%);
}

.performance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.perf-card {
  background: var(--white);
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  border-top: 4px solid var(--primary);
}

.perf-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.perf-card:nth-child(1) {
  border-top-color: #e74c3c;
}

.perf-card:nth-child(2) {
  border-top-color: #f39c12;
}

.perf-card:nth-child(3) {
  border-top-color: #3498db;
}

.perf-card:nth-child(4) {
  border-top-color: #27ae60;
}

.perf-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.perf-card p {
  color: var(--medium);
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.6;
}

.perf-card p:first-of-type {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}

.perf-card p:last-of-type {
  margin-bottom: 0;
}

/* Service Use Cases */
.service-usecases {
  padding: 80px 0;
  background: var(--light);
}

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

.usecase-card {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.usecase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.usecase-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 20px;
}

.usecase-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.usecase-card p {
  color: var(--medium);
  font-size: 14px;
  margin-bottom: 16px;
}

.usecase-features {
  list-style: none;
  padding: 0;
}

.usecase-features li {
  padding-left: 20px;
  margin-bottom: 8px;
  color: var(--medium);
  font-size: 13px;
  position: relative;
}

.usecase-features li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Comparison Table */
.service-comparison {
  padding: 80px 0;
  background: var(--white);
}

.comparison-table {
  overflow-x: auto;
  background: var(--light);
  border-radius: 8px;
  padding: 20px;
}

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

.comparison-table th {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 16px;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.comparison-table td {
  padding: 16px;
  border-bottom: 1px solid #ddd;
  color: var(--dark);
  font-size: 14px;
}

.comparison-table tbody tr:hover {
  background: rgba(52, 152, 219, 0.05);
}

/* Security Section */
.service-security {
  padding: 80px 0;
  background: var(--light);
}

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

.security-card {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--secondary);
}

.security-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.security-card p {
  color: var(--medium);
  font-size: 14px;
  line-height: 1.6;
}

/* Benefits Section */
.service-benefits {
  padding: 80px 0;
  background: var(--white);
}

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

.benefit-item {
  position: relative;
  padding-left: 80px;
}

.benefit-number {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(52, 152, 219, 0.1);
  line-height: 1;
}

.benefit-item h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.benefit-item p {
  color: var(--medium);
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive Service Pages */
@media (max-width: 768px) {
  .service-hero h1 {
    font-size: 36px;
  }

  .service-hero p {
    font-size: 16px;
  }

  .comparison-table {
    overflow-x: auto;
  }

  .comparison-table table {
    min-width: 450px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* Technology Stack */
.tech-stack {
  padding: 80px 0;
  background: var(--white);
}

.tech-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.tech-category {
  background: var(--light);
  padding: 32px;
  border-radius: 8px;
  border-top: 4px solid var(--primary);
}

.tech-category h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 20px;
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tech-tag {
  background: var(--white);
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
}

.tech-tag:hover {
  background: var(--primary);
  color: var(--white);
}

/* Development Process */
.dev-process {
  padding: 80px 0;
  background: var(--light);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.process-step {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  padding-left: 80px;
}

.step-number {
  position: absolute;
  left: 20px;
  top: 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: rgba(52, 152, 219, 0.15);
}

.process-step h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.process-step p {
  color: var(--medium);
  font-size: 14px;
  line-height: 1.6;
}

/* Methodologies */
.methodologies {
  padding: 80px 0;
  background: var(--white);
}

.methodologies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.methodology-card {
  background: linear-gradient(135deg, rgba(10, 77, 140, 0.05) 0%, rgba(52, 152, 219, 0.05) 100%);
  border: 1px solid rgba(10, 77, 140, 0.1);
  padding: 32px;
  border-radius: 8px;
  transition: all 0.3s;
}

.methodology-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(10, 77, 140, 0.15);
}

.methodology-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}

.methodology-card p {
  color: var(--medium);
  font-size: 14px;
  line-height: 1.6;
}

/* Quality Assurance */
.quality-assurance {
  padding: 80px 0;
  background: var(--light);
}

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

.qa-card {
  background: var(--white);
  padding: 36px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s;
}

.qa-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.qa-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--white);
  margin: 0 auto 20px;
}

.qa-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.qa-card p {
  color: var(--medium);
  font-size: 14px;
  line-height: 1.6;
}
/* Login Form */
.login-form-wrapper {
  padding: 60px 0;
}

.login-form-container {
  background: var(--white);
  padding: 50px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 450px;
  margin: 0 auto;
}

.login-form-container h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  text-align: center;
}

.login-description {
  text-align: center;
  color: var(--medium);
  margin-bottom: 32px;
  font-size: 14px;
}

.login-form-container .contact-form {
  gap: 24px;
}

.login-info {
  background: #f0f7ff;
  border-left: 4px solid var(--primary);
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.login-info small {
  color: var(--primary);
  font-size: 13px;
  display: block;
  text-align: center;
}

.btn-primary-submit {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  width: 100%;
  border: none;
  text-align: center;
  margin-top: 8px;
}

.btn-primary-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 77, 140, 0.3);
}

.btn-primary-submit:active {
  transform: translateY(0);
}

/* Content Section */
.content-section {
  padding: 80px 0;
  background: #fafbfc;
}

/* Blog Posts Styles */
.blog-header {
  margin-bottom: 40px;
  text-align: center;
}

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

.post-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.post-header {
  padding: 24px;
  border-bottom: 1px solid #eee;
}

.post-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark);
}

.post-header h2 a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s;
}

.post-header h2 a:hover {
  color: var(--primary);
}

.post-meta,
.post-comments {
  font-size: 13px;
  color: var(--medium);
  margin: 6px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-content {
  padding: 24px;
  flex-grow: 1;
  color: var(--dark);
  line-height: 1.6;
}

.post-actions {
  padding: 16px 24px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.action-link {
  font-size: 13px;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
  padding: 6px 12px;
  border-radius: 4px;
}

.action-link:hover {
  color: var(--white);
  background: var(--primary);
}

.action-link.edit {
  color: #3498db;
}

.action-link.edit:hover {
  background: #3498db;
}

.action-link.delete {
  color: #e74c3c;
}

.action-link.delete:hover {
  background: #e74c3c;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  background: var(--white);
  border-radius: 8px;
  color: var(--medium);
}

.empty-state p {
  margin-bottom: 20px;
}

/* Form Wrapper */
.form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  max-width: 700px;
  margin: 0 auto;
}

.form-wrapper h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  text-align: center;
}

.form-wrapper .contact-form {
  gap: 20px;
}

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.form-actions .btn {
  flex: 1;
  min-width: 150px;
  text-align: center;
}

.btn-secondary-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  transition: all 0.3s;
}

.btn-secondary-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 77, 140, 0.2);
}

.btn-danger {
  background: #e74c3c;
  color: var(--white);
}

.btn-danger:hover {
  background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.2);
}

/* Back Link */
.back-link-section {
  padding: 20px 0;
  background: #f8f9fa;
  border-bottom: 1px solid #eee;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  padding: 8px 12px;
  border-radius: 4px;
}

.back-link:hover {
  color: var(--white);
  background: var(--primary);
  transform: translateX(-4px);
}

/* Post Full */
.post-full {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.post-meta-large {
  font-size: 16px;
  opacity: 0.9;
}

.meta-separator {
  margin: 0 8px;
}

.post-body {
  padding: 40px;
  color: var(--dark);
  line-height: 1.8;
  font-size: 16px;
}

.post-body p {
  margin-bottom: 16px;
}

.post-body h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin: 24px 0 16px;
  color: var(--primary);
}

.post-actions-full {
  display: flex;
  gap: 12px;
  padding: 24px 40px;
  border-top: 1px solid #eee;
  flex-wrap: wrap;
}

.post-actions-full .btn {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Comments Section */
.comments-section {
  padding: 40px;
  border-top: 2px solid #eee;
}

.comments-section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 24px;
}

.comments-list {
  margin-bottom: 32px;
}

.comment-item {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 16px;
  border-left: 4px solid var(--primary);
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.comment-header strong {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: var(--dark);
}

.comment-date {
  color: var(--medium);
  font-size: 12px;
}

.comment-content {
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 12px;
}

.comment-actions {
  text-align: right;
}

.delete-link {
  font-size: 12px;
  color: #e74c3c;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 3px;
  transition: all 0.3s;
}

.delete-link:hover {
  background: #e74c3c;
  color: var(--white);
}

.no-comments {
  text-align: center;
  color: var(--medium);
  padding: 20px;
  font-style: italic;
}

/* Add Comment Form */
.add-comment-form {
  background: #f8f9fa;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #eee;
}

.add-comment-form h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 20px;
}

.add-comment-form .contact-form {
  gap: 16px;
}

.add-comment-form textarea {
  min-height: 100px;
}

/* Login Prompt */
.login-prompt {
  text-align: center;
  padding: 40px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 2px dashed #ddd;
}

.login-prompt p {
  color: var(--medium);
  font-size: 16px;
}

.login-prompt a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.login-prompt a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }

  .form-wrapper {
    padding: 24px;
  }

  .post-body {
    padding: 24px;
  }

  .comments-section {
    padding: 24px;
  }

  .post-actions-full,
  .form-actions {
    flex-direction: column;
  }

  .post-actions-full .btn,
  .form-actions .btn {
    width: 100%;
  }

  .comment-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .comment-date {
    margin-top: 4px;
  }
}
