/* Base Styles */
:root {
  --primary-color: #2c55a5;
  --primary-light: #4d77c6;
  --primary-dark: #1a3a7a;
  --secondary-color: #ffa500;
  --secondary-light: #ffc04d;
  --secondary-dark: #cc8400;
  --text-color: #333333;
  --text-light: #666666;
  --text-dark: #222222;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --success-color: #28a745;
  --error-color: #dc3545;
  --warning-color: #ffc107;
  --font-primary: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --font-secondary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 4px;
  --container-max-width: 1200px;
  --content-max-width: 800px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

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

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

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

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

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

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  font-size: 1rem;
  line-height: 1.5;
}

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

.center {
  text-align: center;
}

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

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

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

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

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

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

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

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

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--text-color);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
  color: white;
}

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

.hero-content {
  flex: 1;
}

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

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

/* Features Section */
.features {
  padding: 5rem 0;
  background-color: var(--bg-white);
}

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

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

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

.feature-item:hover {
  transform: translateY(-5px);
}

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

.feature-icon svg {
  width: 50px;
  height: 50px;
  stroke: var(--primary-color);
}

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

/* Blog Preview Section */
.blog-preview {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

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

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

.blog-card {
  background-color: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

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

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

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

.blog-content {
  padding: 1.5rem;
}

.blog-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

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

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

.read-more::after {
  content: "→";
  margin-left: 0.5rem;
  transition: var(--transition);
}

.read-more:hover::after {
  margin-left: 0.75rem;
}

/* Newsletter Section */
.newsletter {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
  color: white;
}

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

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

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

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

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

.newsletter-form button {
  background-color: var(--secondary-color);
}

.newsletter-form button:hover {
  background-color: var(--secondary-dark);
}

/* Personal Message Section */
.personal-message {
  padding: 5rem 0;
  background-color: var(--bg-white);
}

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

.message-content h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.message-letter {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  position: relative;
}

.message-letter::before {
  content: """;
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 5rem;
  color: var(--primary-light);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.message-letter p:last-child {
  margin-bottom: 0;
}

/* Footer */
footer {
  background-color: var(--text-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 5rem 0 2rem;
}

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

.footer-logo img {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-logo p {
  font-weight: 600;
  color: white;
}

.footer-links h4 {
  color: white;
  margin-bottom: 1.5rem;
}

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

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

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

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

.footer-contact h4 {
  color: white;
  margin-bottom: 1.5rem;
}

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

.footer-contact p svg {
  margin-right: 0.75rem;
}

.footer-social h4 {
  color: white;
  margin-bottom: 1.5rem;
}

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

.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(--primary-color);
  transform: translateY(-3px);
}

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

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.btn-accept {
  background-color: var(--success-color);
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-settings {
  background-color: var(--bg-light);
  color: var(--text-color);
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-decline {
  background-color: var(--error-color);
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

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

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 5rem 0 3rem;
  text-align: center;
}

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

.page-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Blog Main Page */
.blog-main {
  padding: 5rem 0;
}

.blog-main .blog-grid {
  margin-bottom: 0;
}

.blog-main .blog-card {
  display: flex;
  flex-direction: column;
}

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

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

.blog-newsletter {
  margin-top: 5rem;
}

/* Blog Post Page */
.blog-post {
  padding: 5rem 0;
}

.blog-post .container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.post-content {
  background-color: var(--bg-white);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.post-header {
  padding: 2rem 2rem 0;
}

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

.post-featured-image {
  margin-bottom: 2rem;
}

.post-featured-image img {
  width: 100%;
}

.post-body {
  padding: 0 2rem 2rem;
}

.post-body h2 {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.post-body h3 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

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

.post-body li {
  margin-bottom: 0.5rem;
}

.post-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-light);
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--text-light);
}

.post-share {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.post-share a {
  display: flex;
  color: var(--text-light);
}

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

/* Sidebar */
.post-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background-color: var(--bg-white);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.sidebar-widget h3 {
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
}

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

.author-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.author-bio h4 {
  margin-bottom: 0.5rem;
}

.author-bio p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.author-social {
  display: flex;
  gap: 0.75rem;
}

.author-social a {
  color: var(--text-light);
}

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

.related-posts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-post {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.related-post img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

.related-post-content h4 {
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.related-post-content h4 a {
  color: var(--text-color);
}

.related-post-content h4 a:hover {
  color: var(--primary-color);
}

.related-post-date {
  font-size: 0.75rem;
  color: var(--text-light);
}

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

.cta-widget p {
  margin-bottom: 1.5rem;
}

/* About Page */
.about-intro {
  padding: 5rem 0;
  background-color: var(--bg-white);
}

.about-intro .container {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: center;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

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

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

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

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

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

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

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

.value-icon svg {
  width: 50px;
  height: 50px;
  stroke: var(--primary-color);
}

.team {
  padding: 5rem 0;
  background-color: var(--bg-white);
}

.team h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.team-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

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

.team-member {
  background-color: var(--bg-white);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

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

.team-member p {
  margin: 0 1.5rem 0.5rem;
  color: var(--text-light);
}

.team-member p:nth-of-type(1) {
  color: var(--primary-color);
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin: 1rem 1.5rem 1.5rem;
}

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

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

.why-choose-us {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.why-choose-us h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.why-choose-item {
  background-color: var(--bg-white);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  padding: 2rem;
  transition: var(--transition);
}

.why-choose-item:hover {
  transform: translateY(-5px);
}

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

.why-choose-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--primary-color);
}

.cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
  color: white;
}

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

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

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

.cta .btn {
  background-color: var(--secondary-color);
}

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

/* Contact Page */
.contact-main {
  padding: 5rem 0;
  background-color: var(--bg-white);
}

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

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

.contact-intro {
  margin-bottom: 2rem;
  color: var(--text-light);
}

.contact-details {
  margin-bottom: 2rem;
}

.contact-detail-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.contact-icon {
  flex-shrink: 0;
  margin-right: 1rem;
  color: var(--primary-color);
  background-color: rgba(44, 85, 165, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-color);
}

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

.contact-text p {
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.contact-social h3 {
  margin-bottom: 0.75rem;
}

.contact-social p {
  margin-bottom: 1rem;
}

.contact-social .social-icons a {
  background-color: var(--bg-light);
  color: var(--text-color);
}

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

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

.contact-form {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
}

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

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

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

.form-group textarea {
  resize: vertical;
}

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

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

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
}

.btn-submit {
  width: 100%;
  padding: 0.875rem;
  background-color: var(--primary-color);
  font-size: 1rem;
}

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

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

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

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

.modal.show {
  display: flex;
}

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

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
}

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

.checkmark {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
}

.checkmark-circle {
  stroke: var(--success-color);
  stroke-width: 2;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  stroke: var(--success-color);
  stroke-width: 2;
  stroke-linecap: round;
  fill: none;
  transform-origin: 50% 50%;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

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

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

.close-btn {
  background-color: var(--primary-color);
  padding: 0.75rem 1.5rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .blog-post .container {
    grid-template-columns: 1fr;
  }
  
  .post-sidebar {
    position: static;
    margin-top: 3rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-image {
    justify-content: center;
    margin-top: 2rem;
  }
  
  .about-intro .container {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    margin-top: 2rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100vh;
    background-color: var(--bg-white);
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }
  
  nav.active {
    transform: translateX(0);
  }
  
  nav ul {
    flex-direction: column;
  }
  
  nav ul li {
    margin-left: 0;
    margin-bottom: 1rem;
  }
  
  .hamburger {
    display: flex;
    z-index: 1001;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

@media (max-width: 576px) {
  .post-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .container {
    padding: 0 1rem;
  }
}

/* Cookie Policy Styles */
.policy-content {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 2rem 0;
}

.policy-content h2 {
  color: var(--primary-color);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.policy-content h3 {
  color: var(--primary-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.policy-content h4 {
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.policy-content ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.policy-content strong {
  color: var(--primary-dark);
  font-weight: 600;
}

.contact-info {
  background: var(--bg-white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
  margin: 2rem 0;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.cookie-settings-btn {
  text-align: center;
  margin: 3rem 0 2rem;
}

/* Thank You Page Styles */
.thankyou-section {
  min-height: 80vh;
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

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

.thankyou-icon {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.thankyou-content h2 {
  color: var(--text-color);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.thankyou-message {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--box-shadow);
  margin-bottom: 3rem;
  text-align: left;
}

.main-message {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 2rem;
}

.response-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-item svg {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.info-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.info-item p {
  color: var(--text-light);
  margin: 0;
}

.next-steps {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--box-shadow);
  margin-bottom: 3rem;
  text-align: left;
}

.next-steps h3 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 2rem;
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.step-content h4 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--text-light);
  margin: 0;
}

.meantime-section {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--box-shadow);
  margin-bottom: 3rem;
}

.meantime-section h3 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 1rem;
}

.meantime-section > p {
  text-align: center;
  color: var(--text-color);
  margin-bottom: 2rem;
}

.action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.action-buttons .btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

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

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

.social-proof {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--box-shadow);
  margin-bottom: 3rem;
}

.social-proof h3 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 2rem;
}

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

.feature {
  text-align: center;
  padding: 1.5rem;
}

.feature svg {
  margin: 0 auto 1rem;
}

.feature h4 {
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.feature p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}

.contact-emergency {
  background: var(--primary-color);
  color: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.emergency-info h4 {
  color: white;
  margin-bottom: 1rem;
}

.emergency-info p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.contact-methods {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  text-decoration: none;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  transition: var(--transition);
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* Responsive styles for new pages */
@media (max-width: 768px) {
  .thankyou-content h1 {
    font-size: 2.5rem;
  }
  
  .thankyou-content h2 {
    font-size: 1.25rem;
  }
  
  .thankyou-message,
  .next-steps,
  .meantime-section,
  .social-proof {
    padding: 1.5rem;
  }
  
  .action-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-methods {
    flex-direction: column;
  }
  
  .features {
    grid-template-columns: 1fr;
  }
  
  .response-info {
    gap: 1rem;
  }
  
  .steps {
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .thankyou-content h1 {
    font-size: 2rem;
  }
  
  .step {
    flex-direction: column;
    text-align: center;
  }
  
  .step-number {
    margin: 0 auto;
  }
  
  .info-item {
    flex-direction: column;
    text-align: center;
  }
  
  .policy-content {
    padding: 1rem 0;
  }
}
