/* Base styles */
:root {
  --primary-color: #4a6de5;
  --primary-dark: #3a56b4;
  --secondary-color: #ff7846;
  --light-color: #f8f9fa;
  --dark-color: #2c3e50;
  --text-color: #333;
  --gray-light: #f0f2f5;
  --gray-medium: #cfd8dc;
  --gray-dark: #78909c;
  --success-color: #28a745;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --border-radius: 6px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-secondary: 'Merriweather', Georgia, 'Times New Roman', serif;
}

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

body {
  font-family: var(--font-primary);
  color: var(--text-color);
  line-height: 1.6;
  background-color: #fff;
  overflow-x: hidden;
}

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

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  line-height: 1.3;
  color: var(--dark-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

ul, ol {
  margin: 0 0 1.5rem 1.5rem;
}

blockquote {
  border-left: 4px solid var(--primary-color);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  background-color: var(--gray-light);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

blockquote p {
  margin-bottom: 0.5rem;
}

blockquote cite {
  font-size: 0.9rem;
  color: var(--gray-dark);
}

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

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

.logo {
  display: flex;
  align-items: center;
}

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

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

nav ul li {
  margin-left: 25px;
}

nav ul li a {
  font-weight: 500;
  color: var(--dark-color);
  position: relative;
}

nav ul li a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 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);
}

/* Buttons */
.btn-primary, 
.btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

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

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

.btn-secondary {
  background-color: var(--light-color);
  color: var(--dark-color);
  border: 1px solid var(--gray-medium);
}

.btn-secondary:hover {
  background-color: var(--gray-light);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

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

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

/* Featured Posts Section */
.featured-posts {
  padding: 80px 0;
}

.featured-posts h2 {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.featured-posts h2:after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 15px auto 0;
}

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

.post-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

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

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.new-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--secondary-color);
  color: white;
  padding: 5px 10px;
  border-radius: var(--border-radius);
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 1;
}

.post-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.post-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.post-content p {
  margin-bottom: 15px;
  flex-grow: 1;
}

.read-more {
  align-self: flex-start;
  color: var(--primary-color);
  font-weight: 600;
  display: flex;
  align-items: center;
}

.read-more:after {
  content: '→';
  margin-left: 5px;
  transition: var(--transition);
}

.read-more:hover:after {
  margin-left: 10px;
}

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

/* Expert Interview Section */
.expert-interview {
  background-color: var(--gray-light);
  padding: 80px 0;
}

.interview-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}

.expert-image {
  height: 300px;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

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

.interview-content h3 {
  margin-bottom: 10px;
}

.expert-title {
  color: var(--gray-dark);
  font-style: italic;
  margin-bottom: 20px;
}

.interview-qa {
  margin-bottom: 20px;
}

.question {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.answer {
  margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #ff9a76 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
}

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

.cta-content p {
  max-width: 700px;
  margin: 0 auto 2rem;
}

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

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

.footer-logo img {
  height: 40px;
  margin-bottom: 15px;
}

.footer-logo p {
  font-size: 0.9rem;
  color: var(--gray-medium);
}

.footer-links h3,
.footer-contact h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--gray-medium);
  transition: var(--transition);
}

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

.footer-contact p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: var(--gray-medium);
}

.footer-contact i {
  margin-right: 10px;
  color: var(--primary-color);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

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

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

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: var(--gray-medium);
}

/* Blog Posts Page */
.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
}

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

.blog-posts {
  padding: 80px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.blog-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.blog-image {
  position: relative;
  height: 100%;
  min-height: 250px;
}

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

.blog-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
}

.blog-content h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.post-meta {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: var(--gray-dark);
  font-size: 0.9rem;
}

.date, .author {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.author-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}

/* Subscribe Section */
.subscribe-section {
  background-color: var(--gray-light);
  padding: 60px 0;
}

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

.subscribe-form {
  display: flex;
  margin-top: 30px;
}

.subscribe-form input {
  flex-grow: 1;
  padding: 12px 15px;
  border: 1px solid var(--gray-medium);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-family: var(--font-primary);
  font-size: 1rem;
}

.subscribe-form button {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  padding: 0 20px;
}

/* About Page */
.about-us {
  padding: 80px 0;
}

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

.about-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.about-text h2 {
  margin-bottom: 25px;
  position: relative;
}

.about-text h2:after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  margin-top: 15px;
}

.team-section {
  background-color: var(--gray-light);
  padding: 80px 0;
}

.team-section h2 {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.team-section h2:after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 15px auto 0;
}

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

.team-member {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  text-align: center;
  padding-bottom: 20px;
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

.team-member h3 {
  margin: 15px 0 5px;
}

.team-member p {
  margin: 0 15px 10px;
  color: var(--gray-dark);
}

.values-section {
  padding: 80px 0;
}

.values-section h2 {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.values-section h2:after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 15px auto 0;
}

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

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

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

.value-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.value-card h3 {
  margin-bottom: 15px;
}

.value-card p {
  margin-bottom: 0;
}

/* Contact Page */
.contact-section {
  padding: 80px 0;
}

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

.contact-info h2 {
  margin-bottom: 30px;
  position: relative;
}

.contact-info h2:after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  margin-top: 15px;
}

.info-item {
  display: flex;
  margin-bottom: 25px;
}

.info-icon {
  margin-right: 15px;
  color: var(--primary-color);
  min-width: 24px;
}

.info-text h3 {
  margin-bottom: 5px;
}

.info-text p {
  margin-bottom: 0;
  color: var(--gray-dark);
}

.social-contact h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.contact-form-container h2 {
  margin-bottom: 30px;
  position: relative;
}

.contact-form-container h2:after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  margin-top: 15px;
}

.contact-form {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: 20px;
}

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

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

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

.checkbox-container {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 0.9rem;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--gray-light);
  border: 1px solid var(--gray-medium);
  border-radius: 3px;
}

.checkbox-container:hover input ~ .checkmark {
  background-color: var(--gray-medium);
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.map-section {
  padding: 0 0 80px;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

/* Thank You Popup */
.thank-you-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.popup-content {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 40px;
  text-align: center;
  max-width: 500px;
  box-shadow: var(--box-shadow);
}

.popup-icon {
  color: var(--success-color);
  margin-bottom: 20px;
}

.popup-content h2 {
  margin-bottom: 15px;
}

.popup-content p {
  margin-bottom: 25px;
}

/* Blog Post Page */
.blog-post {
  padding: 60px 0;
}

.post-header {
  text-align: center;
  margin-bottom: 40px;
}

.post-category {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.new-badge-article {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.9rem;
  margin-left: 10px;
}

.post-header h1 {
  margin-bottom: 20px;
}

.post-header .post-meta {
  justify-content: center;
}

.post-featured-image {
  margin-bottom: 40px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.post-content {
  max-width: 800px;
  margin: 0 auto;
  font-family: var(--font-secondary);
  line-height: 1.8;
}

.post-intro {
  font-size: 1.2rem;
  color: var(--dark-color);
  margin-bottom: 30px;
  font-weight: 500;
}

.post-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-family: var(--font-primary);
}

.post-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-family: var(--font-primary);
}

.post-content img {
  border-radius: var(--border-radius);
  margin: 20px 0;
}

.post-content a {
  border-bottom: 1px solid var(--primary-color);
  padding-bottom: 1px;
}

.post-content a:hover {
  border-bottom-color: var(--primary-dark);
}

.info-box {
  background-color: var(--gray-light);
  border-radius: var(--border-radius);
  padding: 20px;
  margin: 30px 0;
  border-left: 4px solid var(--primary-color);
}

.info-box h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.info-box p {
  margin-bottom: 0;
}

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

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--gray-medium);
}

.comparison-table th {
  background-color: var(--primary-color);
  color: white;
  text-align: left;
  padding: 12px 15px;
}

.comparison-table td {
  padding: 10px 15px;
  border-bottom: 1px solid var(--gray-medium);
}

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

.crm-comparison {
  background-color: var(--gray-light);
  border-radius: var(--border-radius);
  padding: 20px;
  margin: 20px 0;
}

.crm-details p {
  margin-bottom: 10px;
}

.post-tags {
  display: flex;
  align-items: center;
  margin: 40px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.post-tags span {
  margin-right: 15px;
  font-weight: 600;
}

.post-tags ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
}

.post-tags li {
  margin: 5px;
}

.post-tags a {
  display: inline-block;
  background-color: var(--gray-light);
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.9rem;
  color: var(--dark-color);
  border: none;
}

.post-tags a:hover {
  background-color: var(--gray-medium);
  color: var(--dark-color);
}

.share-post {
  display: flex;
  align-items: center;
  margin: 40px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.share-post span {
  margin-right: 15px;
  font-weight: 600;
}

.social-share {
  display: flex;
}

.social-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--gray-light);
  color: var(--dark-color);
  margin-right: 10px;
  transition: var(--transition);
  border-bottom: none;
}

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

.author-bio {
  display: flex;
  align-items: center;
  background-color: var(--gray-light);
  border-radius: var(--border-radius);
  padding: 30px;
  margin: 60px auto;
  max-width: 800px;
}

.author-bio .author-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-right: 30px;
}

.author-info h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-dark);
  margin-bottom: 5px;
}

.author-info h4 {
  margin-bottom: 10px;
}

.author-info p {
  margin-bottom: 15px;
}

.author-social {
  display: flex;
}

.author-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: white;
  color: var(--dark-color);
  margin-right: 10px;
  transition: var(--transition);
  border-bottom: none;
}

.author-social a:hover {
  background-color: var(--primary-color);
  color: white;
}

.related-posts {
  max-width: 800px;
  margin: 60px auto;
}

.related-posts h3 {
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.related-posts h3:after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 15px auto 0;
}

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

.related-post {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border-bottom: none;
}

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

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

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

.cta-box {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  border-radius: var(--border-radius);
  padding: 40px;
  text-align: center;
  margin: 60px auto;
  max-width: 800px;
}

.cta-box h3 {
  color: white;
  margin-bottom: 15px;
}

.cta-box p {
  margin-bottom: 25px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 1000;
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cookie-content p {
  margin-bottom: 15px;
  text-align: center;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.btn-cookie {
  padding: 8px 16px;
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.accept {
  background-color: var(--success-color);
  color: white;
}

.accept:hover {
  background-color: #218838;
}

.customize {
  background-color: var(--gray-light);
  color: var(--dark-color);
}

.customize:hover {
  background-color: var(--gray-medium);
}

.reject {
  background-color: var(--danger-color);
  color: white;
}

.reject:hover {
  background-color: #c82333;
}

.cookie-policy {
  font-size: 0.9rem;
  color: var(--gray-dark);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .interview-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .expert-image {
    height: 250px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .blog-card {
    grid-template-columns: 1fr;
  }
  
  .blog-image {
    height: 250px;
  }
}

@media (max-width: 767px) {
  header .container {
    flex-direction: column;
  }
  
  nav ul {
    margin-top: 15px;
  }
  
  nav ul li {
    margin: 0 10px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .subscribe-form {
    flex-direction: column;
  }
  
  .subscribe-form input {
    border-radius: var(--border-radius);
    margin-bottom: 10px;
  }
  
  .subscribe-form button {
    border-radius: var(--border-radius);
    width: 100%;
  }
  
  .author-bio {
    flex-direction: column;
    text-align: center;
  }
  
  .author-bio .author-img {
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .author-social {
    justify-content: center;
  }
  
  .post-tags, .share-post {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .post-tags span, .share-post span {
    margin-bottom: 10px;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-cookie {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .cta-box {
    padding: 30px 20px;
  }
  
  nav ul li {
    margin: 0 5px;
    font-size: 0.9rem;
  }
}

/* Icons */
.icon-location, .icon-phone, .icon-email {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 10px;
}

.icon-location {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234a6de5'%3E%3Cpath d='M12,11.5A2.5,2.5 0 0,1 9.5,9A2.5,2.5 0 0,1 12,6.5A2.5,2.5 0 0,1 14.5,9A2.5,2.5 0 0,1 12,11.5M12,2A7,7 0 0,0 5,9C5,14.25 12,22 12,22C12,22 19,14.25 19,9A7,7 0 0,0 12,2Z' /%3E%3C/svg%3E");
}

.icon-phone {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234a6de5'%3E%3Cpath d='M6.62,10.79C8.06,13.62 10.38,15.94 13.21,17.38L15.41,15.18C15.69,14.9 16.08,14.82 16.43,14.93C17.55,15.3 18.75,15.5 20,15.5A1,1 0 0,1 21,16.5V20A1,1 0 0,1 20,21A17,17 0 0,1 3,4A1,1 0 0,1 4,3H7.5A1,1 0 0,1 8.5,4C8.5,5.25 8.7,6.45 9.07,7.57C9.18,7.92 9.1,8.31 8.82,8.59L6.62,10.79Z' /%3E%3C/svg%3E");
}

.icon-email {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234a6de5'%3E%3Cpath d='M20,8L12,13L4,8V6L12,11L20,6M20,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V6C22,4.89 21.1,4 20,4Z' /%3E%3C/svg%3E");
}
