/* Main Variables */
:root {
  --primary-color: #e74c3c;
  --secondary-color: #c0392b;
  --text-color: #333;
  --bg-color: #fff;
  --light-bg: #f8f9fa;
  --dark-bg: #343a40;
  --border-color: #ddd;
  --header-height: 80px;
  --footer-bg: #2c3e50;
  --font-main: 'Open Sans', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

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

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.2rem;
}

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

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

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

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

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

.btn-tertiary {
  background-color: #6c757d;
  color: white;
}

.btn-tertiary:hover {
  background-color: #5a6268;
  color: white;
}

/* Header */
header {
  background-color: var(--bg-color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
}

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

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

.logo img {
  height: 100%;
  width: auto;
}

nav ul {
  display: flex;
  gap: 1.5rem;
}

nav ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-color);
  font-weight: 600;
  padding: 8px 0;
  position: relative;
}

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

nav ul li a .translation {
  font-size: 0.75rem;
  opacity: 0.7;
  display: block;
  text-align: center;
}

/* Hero Section */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/1.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 120px 0;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: var(--light-bg);
}

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

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

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

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

.feature-icon {
  margin-bottom: 20px;
  color: var(--primary-color);
}

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

/* Products Section */
.products {
  padding: 80px 0;
}

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

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

.product-category {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.product-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.product-category h3 {
  padding: 20px 20px 10px;
}

.product-category p {
  padding: 0 20px 20px;
}

.product-category .btn-secondary {
  margin: 0 20px 20px;
}

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

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

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

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

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

.blog-post img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-post h3 {
  padding: 20px 20px 10px;
}

.blog-post p {
  padding: 0 20px;
}

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

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

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

.blog-link {
  text-align: center;
  margin-top: 40px;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
}

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

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

.testimonial {
  background-color: var(--light-bg);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--box-shadow);
}

.testimonial-content {
  position: relative;
  padding-left: 25px;
  margin-bottom: 20px;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.5;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

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

.testimonial-author h4 {
  margin-bottom: 5px;
}

.testimonial-author p {
  margin-bottom: 0;
  font-style: italic;
}

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

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

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

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

.cta .btn-primary:hover {
  background-color: #f8f9fa;
}

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

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

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 15px;
}

.footer-info p {
  margin-bottom: 10px;
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.footer-links h3::after, .footer-contact h3::after, .footer-social h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

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

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

.footer-links ul li a:hover {
  opacity: 1;
  padding-left: 5px;
}

.footer-contact address {
  font-style: normal;
}

.footer-contact address p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact address p a {
  color: white;
  opacity: 0.8;
}

.footer-contact address p a:hover {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: white;
  opacity: 0.8;
  transition: var(--transition);
}

.social-links a:hover {
  opacity: 1;
  transform: translateY(-3px);
}

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

.copyright p {
  margin-bottom: 0;
  opacity: 0.8;
}

.policies {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.policies a {
  color: white;
  opacity: 0.8;
}

.policies a:hover {
  opacity: 1;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: var(--dark-bg);
  color: white;
  padding: 20px;
  z-index: 1001;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transition: bottom 0.5s ease;
}

.cookie-consent.show {
  bottom: 0;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cookie-content p {
  margin-bottom: 0;
}

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

.cookie-content a {
  color: white;
  text-decoration: underline;
}

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

.page-header h1 {
  margin-bottom: 10px;
}

.page-header p {
  margin-bottom: 0;
  font-size: 1.1rem;
}

/* Blog Categories */
.blog-categories {
  padding: 30px 0;
  border-bottom: 1px solid var(--border-color);
}

.category-nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.category-nav ul li a {
  padding: 8px 16px;
  border-radius: 20px;
  transition: var(--transition);
}

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

/* Blog Posts Section */
.blog-posts-section {
  padding: 60px 0;
}

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

.blog-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  background-color: var(--bg-color);
  border-radius: 8px;
  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.1);
}

.blog-image {
  height: 100%;
}

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

.blog-content {
  padding: 30px 30px 30px 0;
}

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #6c757d;
}

.blog-card h2 {
  margin-bottom: 15px;
}

.blog-card h2 a {
  color: var(--text-color);
}

.blog-card h2 a:hover {
  color: var(--primary-color);
}

.blog-card p {
  margin-bottom: 20px;
}

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

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

.subscribe h2 {
  margin-bottom: 15px;
}

.subscribe p {
  margin-bottom: 30px;
}

.subscribe-form {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.subscribe-form input {
  flex: 1;
  max-width: 400px;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: var(--font-main);
}

/* Contact Info Section */
.contact-info {
  padding: 80px 0;
}

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

.contact-card {
  background-color: var(--light-bg);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.contact-icon {
  margin-bottom: 20px;
  color: var(--primary-color);
}

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

.contact-card p, .contact-card a {
  margin-bottom: 0;
}

/* Contact Map */
.contact-map {
  padding: 40px 0 80px;
}

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

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

/* Contact Form */
.contact-form-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form {
  background-color: var(--bg-color);
  border-radius: 8px;
  padding: 40px;
  box-shadow: var(--box-shadow);
}

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

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

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: var(--font-main);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-checkbox input {
  width: auto;
  margin-top: 5px;
}

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

/* FAQ Section */
.faq {
  padding: 80px 0;
}

.faq h2 {
  text-align: center;
  margin-bottom: 40px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.faq-question {
  background-color: var(--light-bg);
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  margin-bottom: 0;
}

.faq-toggle {
  transition: var(--transition);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 500px;
}

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

.modal.show {
  display: flex;
}

.modal-content {
  background-color: var(--bg-color);
  padding: 40px;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
}

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

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

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

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 15px;
}

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

.mission-vision {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.mission-vision-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mission, .vision {
  background-color: var(--bg-color);
  border-radius: 8px;
  padding: 40px;
  box-shadow: var(--box-shadow);
  text-align: center;
}

.mission-icon, .vision-icon {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.values {
  padding: 80px 0;
}

.values h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

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

.value-icon {
  margin-bottom: 20px;
  color: var(--primary-color);
}

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

.team h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

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

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

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

.team-card h3, .team-card p {
  padding: 0 20px;
}

.team-card h3 {
  margin-top: 20px;
  margin-bottom: 5px;
}

.team-card .social-links {
  padding: 0 20px 20px;
  justify-content: center;
}

.partners {
  padding: 80px 0;
}

.partners h2 {
  text-align: center;
  margin-bottom: 40px;
}

.partners-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  align-items: center;
}

.partner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  filter: grayscale(100%);
  transition: var(--transition);
}

.partner:hover {
  filter: grayscale(0);
}

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

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

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  color: #6c757d;
}

.post-featured-image {
  border-radius: 8px;
  overflow: hidden;
  margin-top: 30px;
}

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

.post-content {
  margin-bottom: 40px;
}

.post-content h2, .post-content h3 {
  margin-top: 40px;
}

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

.post-content ul li, .post-content ol li {
  margin-bottom: 10px;
}

.author-box {
  display: flex;
  gap: 20px;
  background-color: var(--light-bg);
  border-radius: 8px;
  padding: 30px;
  margin-top: 40px;
}

.author-image {
  flex-shrink: 0;
}

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

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

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

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

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.post-tags a {
  display: inline-block;
  background-color: var(--light-bg);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.9rem;
}

.post-share {
  display: flex;
  gap: 10px;
  align-items: center;
}

.related-posts {
  padding: 60px 0;
  background-color: var(--light-bg);
}

.related-posts h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

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

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

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

.related-post h3 {
  padding: 20px 20px 10px;
  font-size: 1.2rem;
}

.related-post p {
  padding: 0 20px;
  margin-bottom: 15px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .about-content, .mission-vision-content {
    grid-template-columns: 1fr;
  }
  
  .blog-card {
    grid-template-columns: 1fr;
  }
  
  .blog-image {
    height: 250px;
  }
  
  .blog-content {
    padding: 30px;
  }
  
  .author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  header {
    height: auto;
    padding: 15px 0;
  }
  
  header .container {
    flex-direction: column;
    gap: 15px;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero {
    padding: 80px 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .features-grid, .products-grid, .blog-posts, .testimonials-slider, .contact-grid, .values-grid, .team-grid, .partners-slider {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .policies {
    justify-content: center;
  }
  
  .subscribe-form {
    flex-direction: column;
  }
  
  .subscribe-form input {
    max-width: 100%;
  }
  
  .post-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 10px;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .btn-primary, .btn-secondary, .btn-tertiary {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .category-nav ul {
    gap: 10px;
  }
  
  .contact-form {
    padding: 20px;
  }
}
