/* ValueCourse - Global Styles */
:root {
  --primary-color: #1a5f7a;
  --secondary-color: #2a9d8f;
  --accent-color: #e76f51;
  --dark-color: #1a2332;
  --light-color: #f4f4f4;
  --border-color: #e0e0e0;
  --text-color: #333333;
  --text-light: #666666;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --container-width: 1200px;
  --transition: all 0.3s ease;
}

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

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

.vc-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Cookie Consent Banner */
.vc-cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-color);
  color: white;
  padding: 20px;
  z-index: 10000;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  display: none;
}

.vc-cookie-consent.show {
  display: block;
}

.vc-cookie-wrapper {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.vc-cookie-text {
  flex: 1;
  min-width: 250px;
}

.vc-cookie-text h4 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.vc-cookie-text p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.vc-cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.vc-cookie-actions button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.vc-btn-primary:hover {
  background: #238276;
}

.vc-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

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

.vc-btn-tertiary {
  background: transparent;
  color: #cccccc;
  text-decoration: underline;
}

.vc-privacy-link {
  color: #cccccc;
  font-size: 0.85rem;
  text-decoration: underline;
  margin-left: auto;
}

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

.vc-navbar {
  padding: 15px 0;
}

.vc-nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vc-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.4rem;
}

.vc-logo img {
  border-radius: 50%;
}

.vc-nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.vc-nav-menu a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
  padding: 5px 0;
  border-bottom: 2px solid transparent;
}

.vc-nav-menu a:hover,
.vc-nav-menu a.vc-active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.vc-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.vc-mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  transition: var(--transition);
}

/* Hero Section */
.vc-hero {
  background: linear-gradient(135deg, #1a5f7a 0%, #2a9d8f 100%);
  color: white;
  padding: 80px 0;
}

.vc-hero .vc-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.vc-hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.vc-hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.vc-hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.vc-btn-hero {
  padding: 15px 35px;
  background: white;
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
}

.vc-btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.vc-btn-outline {
  padding: 15px 35px;
  background: transparent;
  color: white;
  text-decoration: none;
  border: 2px solid white;
  border-radius: 5px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
}

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

.vc-hero-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

/* Value Proposition Section */
.vc-value-proposition {
  padding: 80px 0;
  background: var(--light-color);
}

.vc-value-proposition h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

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

.vc-value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.vc-value-card {
  background: white;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.vc-value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.vc-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.vc-value-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.vc-value-card p {
  color: var(--text-light);
}

/* Frameworks Section */
.vc-frameworks {
  padding: 80px 0;
}

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

.vc-frameworks-text h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.vc-frameworks-text p {
  margin-bottom: 25px;
  color: var(--text-light);
  font-size: 1.05rem;
}

.vc-framework-list {
  list-style: none;
  margin-bottom: 30px;
}

.vc-framework-list li {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}

.vc-framework-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.vc-framework-list strong {
  display: block;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.vc-framework-list span {
  color: var(--text-light);
}

.vc-frameworks-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Fun Fact Section */
.vc-fun-fact {
  padding: 60px 0;
  background: linear-gradient(135deg, #2a9d8f 0%, #1a5f7a 100%);
}

.vc-fact-box {
  background: rgba(255,255,255,0.1);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  color: white;
  backdrop-filter: blur(10px);
}

.vc-fact-box h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.vc-fact-box p {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Recent Posts Section */
.vc-recent-posts {
  padding: 80px 0;
  background: var(--light-color);
}

.vc-recent-posts h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.vc-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.vc-post-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.vc-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

.vc-post-content {
  padding: 25px;
}

.vc-post-content h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.vc-post-content h3 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.vc-post-content h3 a:hover {
  color: var(--secondary-color);
}

.vc-post-content p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.vc-read-more {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.vc-read-more:hover {
  color: var(--primary-color);
}

.vc-cta-center {
  text-align: center;
  margin-top: 40px;
}

/* Newsletter Section */
.vc-newsletter {
  padding: 80px 0;
  background: var(--primary-color);
  color: white;
}

.vc-newsletter-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.vc-newsletter-box h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.vc-newsletter-box p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.vc-newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.vc-newsletter-form input {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

.vc-newsletter-form button {
  padding: 15px 30px;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.vc-newsletter-form button:hover {
  background: #d45a3c;
}

.vc-subscriber-count {
  margin-top: 20px;
  font-size: 0.9rem;
  opacity: 0.8;
}

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

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

.vc-footer-col h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.vc-footer-col ul {
  list-style: none;
}

.vc-footer-col ul li {
  margin-bottom: 10px;
}

.vc-footer-col a {
  color: #cccccc;
  text-decoration: none;
  transition: var(--transition);
}

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

.vc-footer-logo {
  border-radius: 50%;
  margin-bottom: 15px;
}

.vc-reg-number {
  margin-top: 15px;
  font-size: 0.9rem;
  opacity: 0.7;
}

.vc-contact-info li {
  line-height: 1.8;
}

.vc-footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0.7;
}

/* Blog Pages */
.vc-blog-hero,
.vc-about-hero,
.vc-contact-hero,
.vc-whitepaper-hero {
  background: linear-gradient(135deg, #1a5f7a 0%, #2a9d8f 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.vc-blog-hero h1,
.vc-about-hero h1,
.vc-contact-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.vc-blog-content {
  padding: 80px 0;
}

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

.vc-blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.vc-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.vc-blog-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.vc-blog-body {
  padding: 30px;
}

.vc-blog-body h2 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.vc-blog-body h2 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.vc-blog-body h2 a:hover {
  color: var(--secondary-color);
}

.vc-blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.vc-btn-read {
  display: inline-block;
  margin-top: 15px;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.vc-btn-read:hover {
  color: var(--primary-color);
}

/* Post Page */
.vc-post {
  padding: 40px 0;
}

.vc-post-header {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.vc-post-header h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.vc-post-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--text-light);
  font-size: 0.95rem;
}

.vc-post-featured {
  max-width: 1000px;
  margin: 0 auto 40px;
}

.vc-post-featured img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.vc-post-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
}

.vc-post-intro {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 30px;
  font-style: italic;
}

.vc-post-content h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin: 40px 0 20px;
}

.vc-post-content h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin: 30px 0 15px;
}

.vc-post-content p {
  margin-bottom: 20px;
}

.vc-post-content ul,
.vc-post-content ol {
  margin-bottom: 20px;
  padding-left: 30px;
}

.vc-post-content li {
  margin-bottom: 10px;
}

.vc-post-content strong {
  color: var(--primary-color);
}

.vc-post-footer {
  max-width: 800px;
  margin: 60px auto 0;
  padding-top: 40px;
  border-top: 2px solid var(--border-color);
}

.vc-share-section {
  text-align: center;
  margin-bottom: 30px;
}

.vc-post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* Whitepaper Page */
.vc-wp-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.vc-wp-header h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.vc-wp-subtitle {
  font-size: 1.3rem;
  margin-bottom: 25px;
  opacity: 0.95;
}

.vc-wp-meta {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.vc-whitepaper-content {
  padding: 60px 0;
}

.vc-wp-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 60px;
}

.vc-wp-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.vc-wp-toc {
  background: var(--light-color);
  padding: 25px;
  border-radius: 10px;
}

.vc-wp-toc h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.vc-wp-toc ul {
  list-style: none;
}

.vc-wp-toc li {
  margin-bottom: 10px;
}

.vc-wp-toc a {
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.vc-wp-toc a:hover {
  color: var(--secondary-color);
}

.vc-wp-main {
  max-width: 800px;
}

.vc-wp-section {
  margin-bottom: 60px;
}

.vc-wp-section img {
  width: 100%;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.vc-wp-callout {
  background: #e7f5ff;
  border-left: 4px solid var(--secondary-color);
  padding: 20px;
  margin: 30px 0;
  border-radius: 5px;
}

.vc-wp-callout h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.vc-wp-highlight {
  background: #fff4e6;
  border-left: 4px solid var(--accent-color);
  padding: 20px;
  margin: 30px 0;
  border-radius: 5px;
  font-style: italic;
}

.vc-wp-table {
  margin: 30px 0;
  overflow-x: auto;
}

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

.vc-wp-table th,
.vc-wp-table td {
  padding: 12px;
  text-align: left;
  border: 1px solid var(--border-color);
}

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

.vc-wp-table tr:nth-child(even) {
  background: var(--light-color);
}

.vc-wp-disclaimer {
  max-width: 800px;
  margin: 60px auto;
  padding: 30px;
  background: #fff3cd;
  border-radius: 10px;
  border: 2px solid var(--warning-color);
}

.vc-wp-disclaimer h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.vc-wp-disclaimer p {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.vc-wp-cta {
  max-width: 800px;
  margin: 60px auto;
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, #1a5f7a 0%, #2a9d8f 100%);
  color: white;
  border-radius: 10px;
}

.vc-wp-cta h2 {
  margin-bottom: 15px;
  color: white;
}

.vc-wp-cta p {
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.vc-cta-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* About Page */
.vc-about-subtitle {
  font-size: 1.2rem;
  opacity: 0.95;
}

.vc-mission {
  padding: 80px 0;
}

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

.vc-mission-text h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.vc-mission-text p {
  margin-bottom: 20px;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
}

.vc-mission-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.vc-values {
  padding: 80px 0;
  background: var(--light-color);
}

.vc-values h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 50px;
}

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

.vc-value-item {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  text-align: center;
}

.vc-value-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.vc-value-item h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.vc-team {
  padding: 80px 0;
}

.vc-team h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.vc-team-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: var(--text-light);
  font-size: 1.1rem;
}

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

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

.vc-team-member img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.vc-team-member h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.vc-member-role {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.vc-approach {
  padding: 80px 0;
  background: var(--light-color);
}

.vc-approach h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 50px;
}

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

.vc-approach-item {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.vc-approach-item h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.vc-cta-section {
  padding: 80px 0;
}

.vc-cta-box {
  background: linear-gradient(135deg, #1a5f7a 0%, #2a9d8f 100%);
  color: white;
  padding: 60px;
  border-radius: 10px;
  text-align: center;
}

.vc-cta-box h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}

.vc-cta-box p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Contact Page */
.vc-contact-subtitle {
  font-size: 1.2rem;
  opacity: 0.95;
}

.vc-contact-content {
  padding: 80px 0;
}

.vc-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.vc-contact-info-section h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.vc-contact-details {
  margin-bottom: 30px;
}

.vc-contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.vc-contact-icon {
  font-size: 1.8rem;
}

.vc-contact-text h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.vc-reg-info {
  background: var(--light-color);
  padding: 20px;
  border-radius: 5px;
  margin-top: 30px;
}

.vc-contact-form-section h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.vc-contact-form {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.vc-form-group {
  margin-bottom: 25px;
}

.vc-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-color);
}

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

.vc-form-group input:focus,
.vc-form-group select:focus,
.vc-form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.1);
}

/* Modal */
.vc-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}

.vc-modal-content {
  background-color: white;
  margin: 10% auto;
  padding: 0;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.3);
}

.vc-modal-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  padding: 10px 20px;
  cursor: pointer;
}

.vc-modal-close:hover {
  color: #000;
}

.vc-modal-body {
  padding: 40px;
  text-align: center;
}

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

.vc-modal-body h2 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 968px) {
  .vc-nav-menu {
    display: none;
  }
  
  .vc-mobile-toggle {
    display: flex;
  }
  
  .vc-hero .vc-container,
  .vc-frameworks-content,
  .vc-mission-content,
  .vc-wp-layout,
  .vc-contact-layout {
    grid-template-columns: 1fr;
  }
  
  .vc-hero-content h1,
  .vc-blog-hero h1,
  .vc-about-hero h1 {
    font-size: 2rem;
  }
  
  .vc-wp-sidebar {
    position: static;
  }
  
  .vc-cta-box {
    padding: 40px 20px;
  }
}

@media (max-width: 768px) {
  .vc-newsletter-form {
    flex-direction: column;
  }
  
  .vc-post-navigation {
    flex-direction: column;
  }
  
  .vc-value-grid,
  .vc-posts-grid,
  .vc-blog-grid {
    grid-template-columns: 1fr;
  }
  
  .vc-hero-actions {
    flex-direction: column;
  }
  
  .vc-btn-hero,
  .vc-btn-outline {
    width: 100%;
    text-align: center;
  }
}