/* Base Styles and Variables */
:root {
  --primary-color: #d96c75;
  --primary-dark: #c25059;
  --primary-light: #f1a7af;
  --secondary-color: #5e3c58;
  --secondary-light: #8a6184;
  --accent-color: #f6d3d5;
  --text-color: #333333;
  --text-light: #666666;
  --background-color: #ffffff;
  --background-alt: #f9f4f5;
  --border-color: #e0e0e0;
  --success-color: #4caf50;
  --error-color: #f44336;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --border-radius: 4px;
  --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
}

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

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

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

ul, ol {
  list-style-position: inside;
  margin-bottom: 1.5rem;
}

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.5rem;
}

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

/* Layout & Utility Classes */
.center {
  text-align: center;
}

.hidden {
  display: none;
}

.flex {
  display: flex;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.grid {
  display: grid;
}

.space-between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

.page-header {
  background-color: var(--secondary-color);
  color: white;
  padding: 60px 0;
  text-align: center;
  margin-bottom: 50px;
}

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

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

/* Buttons */
.btn, 
.btn-secondary, 
.btn-outline,
button[type="submit"] {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
}

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

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

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

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

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

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

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

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

.btn-cookie.customize {
  background-color: transparent;
  border: 1px solid var(--text-light);
  color: var(--text-light);
}

.btn-cookie.reject {
  background-color: transparent;
  color: var(--text-light);
  text-decoration: underline;
}

/* Header & Navigation */
header {
  background-color: 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: 15px 20px;
}

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

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

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

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

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

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

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

/* Hero Section */
.hero {
  background-color: var(--accent-color);
  padding: 80px 0;
  text-align: center;
  margin-bottom: 50px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Features Section */
.features {
  padding: 50px 0;
  margin-bottom: 50px;
}

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

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

.feature-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--border-radius);
  background-color: var(--background-alt);
  transition: var(--transition);
}

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

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

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

/* Comparison Table */
.comparison {
  padding: 50px 0;
  background-color: var(--background-alt);
  margin-bottom: 50px;
}

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

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

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 1.5rem;
}

th, td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

th {
  background-color: var(--secondary-color);
  color: white;
  font-weight: 600;
}

tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.02);
}

/* Recent Posts Section */
.recent-posts {
  padding: 50px 0;
  margin-bottom: 50px;
}

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

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

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

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

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

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

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

.post-content {
  padding: 20px;
}

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

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

.read-more {
  font-weight: 600;
  display: inline-block;
  position: relative;
}

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

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

/* Testimonials Section */
.testimonials {
  padding: 50px 0;
  background-color: var(--background-alt);
  margin-bottom: 50px;
}

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

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

.testimonial {
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
}

.quote {
  color: var(--primary-light);
  margin-bottom: 20px;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 20px;
}

.client {
  display: flex;
  flex-direction: column;
}

.client strong {
  color: var(--secondary-color);
}

.client span {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Services Page */
.services-intro {
  margin-bottom: 50px;
}

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

.service-list {
  margin-bottom: 50px;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
}

.service-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  width: 100%;
}

.service-content h3 {
  margin-bottom: 15px;
}

.service-content h4 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--primary-color);
  font-family: var(--font-body);
  font-size: 1.1rem;
}

.service-content ul {
  margin-bottom: 25px;
}

.service-cta {
  margin-top: 20px;
}

/* Packages Section */
.packages {
  padding: 50px 0;
  background-color: var(--background-alt);
  margin-bottom: 50px;
}

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

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

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

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

.package-card.featured {
  transform: scale(1.05);
  border: 2px solid var(--primary-color);
}

.package-header {
  padding: 20px;
  background-color: var(--secondary-color);
  color: white;
  text-align: center;
}

.featured .package-header {
  background-color: var(--primary-color);
}

.package-header h3 {
  color: white;
  margin-bottom: 10px;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
}

.package-content {
  padding: 20px;
}

.package-content ul {
  margin-bottom: 25px;
  list-style-type: none;
}

.package-content ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.package-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-color);
}

/* CTA Section */
.cta-section {
  padding: 60px 0;
  background-color: var(--secondary-color);
  color: white;
  text-align: center;
  margin-bottom: 50px;
}

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

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Blog Page */
.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}

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

.blog-post .post-image {
  height: 100%;
}

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

.post-date {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.post-category {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--primary-dark);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-left: 10px;
}

.post-meta {
  margin-bottom: 15px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.post-author {
  font-style: italic;
  margin-right: 15px;
}

/* Newsletter */
.newsletter {
  padding: 50px 0;
  background-color: var(--accent-color);
  margin-bottom: 50px;
}

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

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

.newsletter p {
  margin-bottom: 25px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1rem;
  max-width: 350px;
}

.newsletter-form button {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* Blog Post Page */
.blog-post-header {
  background-color: var(--secondary-color);
  color: white;
  padding: 60px 0;
  margin-bottom: 50px;
}

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

.blog-post-header .post-meta {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.blog-post-header .post-category {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.post-author {
  display: flex;
  align-items: center;
}

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

.blog-post-content {
  margin-bottom: 50px;
}

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

.post-main {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  padding: 30px;
}

.featured-image {
  margin: -30px -30px 30px;
}

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

.intro-paragraph {
  font-size: 1.1rem;
  color: var(--secondary-color);
  font-weight: 500;
}

.post-main h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.post-main h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.post-main ul, .post-main ol {
  margin-bottom: 25px;
  padding-left: 20px;
  list-style-position: outside;
}

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

.post-tags {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

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

.post-tags a {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--primary-dark);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-right: 8px;
  margin-bottom: 8px;
}

.post-tags a:hover {
  background-color: var(--primary-light);
  color: white;
}

.share-post {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.share-post h3 {
  margin-bottom: 15px;
}

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

.social-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: var(--primary-dark);
  transition: var(--transition);
}

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

/* Sidebar */
.post-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  padding: 25px;
}

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

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

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

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

.about-author p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.related-post-item {
  margin-bottom: 20px;
}

.related-post-item a {
  display: flex;
  align-items: center;
  gap: 15px;
}

.related-post-item img {
  width: 80px;
  height: 60px;
  border-radius: var(--border-radius);
  object-fit: cover;
}

.related-post-item h4 {
  margin-bottom: 0;
  font-size: 1rem;
  transition: var(--transition);
}

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

.cta-widget {
  background-color: var(--accent-color);
  text-align: center;
}

.cta-widget h3 {
  border-bottom: none;
}

.cta-widget p {
  margin-bottom: 20px;
}

/* About Page */
.about-intro {
  margin-bottom: 50px;
}

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

.about-content {
  padding-right: 20px;
}

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

.values {
  padding: 50px 0;
  background-color: var(--background-alt);
  margin-bottom: 50px;
}

.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: white;
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
}

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

.team {
  margin-bottom: 50px;
}

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

.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;
}

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

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

.team-member p {
  padding: 0 15px;
  margin-bottom: 10px;
  color: var(--text-light);
}

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

.member-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 15px 0;
}

.member-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: var(--primary-dark);
  transition: var(--transition);
}

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

.achievements {
  padding: 50px 0;
  background-color: var(--secondary-color);
  color: white;
  margin-bottom: 50px;
}

.achievements h2 {
  text-align: center;
  color: white;
  margin-bottom: 40px;
}

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

.achievement-card {
  text-align: center;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
}

.achievement-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 10px;
}

.achievement-text {
  font-size: 1.1rem;
}

.brands {
  margin-bottom: 50px;
}

.brands h2, .brands p {
  text-align: center;
}

.brands p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

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

.brand-logo {
  text-align: center;
}

.brand-logo img {
  max-height: 60px;
  margin: 0 auto;
  opacity: 0.7;
  transition: var(--transition);
}

.brand-logo:hover img {
  opacity: 1;
}

/* Contact Page */
.contact-main {
  margin-bottom: 50px;
}

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

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

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

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

.info-icon {
  color: var(--primary-color);
  flex-shrink: 0;
}

.info-content h3 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.info-content p {
  margin-bottom: 5px;
  color: var(--text-light);
}

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

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

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

.contact-form-container h2 {
  margin-bottom: 15px;
}

.contact-form-container p {
  margin-bottom: 25px;
  color: var(--text-light);
}

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

.form-group {
  margin-bottom: 0;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(217, 108, 117, 0.2);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

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

.form-submit {
  grid-column: 1 / -1;
  margin-top: 10px;
}

.map-section {
  margin-bottom: 50px;
}

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

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

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

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

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

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

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

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

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

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

.footer-logo p {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  color: white;
  margin-bottom: 20px;
}

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

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

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

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

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

.footer-contact p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
}

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

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

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

.footer-social .social-icons a:hover {
  background-color: var(--primary-color);
}

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

.legal-links {
  margin-bottom: 15px;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 10px;
  font-size: 0.9rem;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 0;
}

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

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

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

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

.cookie-more {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .service-item {
    grid-template-columns: 1fr;
  }
  
  .service-image {
    order: -1;
  }
  
  .about-intro .container {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    order: -1;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-post-content .container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    padding: 15px;
  }
  
  .logo {
    margin-bottom: 15px;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  nav ul li {
    margin: 5px 10px;
  }
  
  .hero {
    padding: 50px 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .posts-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-post {
    grid-template-columns: 1fr;
  }
  
  .blog-post .post-image {
    height: 200px;
  }
  
  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }
  
  .newsletter-form input {
    border-radius: var(--border-radius);
    margin-bottom: 10px;
    width: 100%;
    max-width: none;
  }
  
  .newsletter-form button {
    border-radius: var(--border-radius);
    width: 100%;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .cookie-content {
    padding: 15px;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .feature-grid,
  .values-grid,
  .team-grid,
  .achievements-grid,
  .brands-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }
  
  .social-connect .social-icons {
    flex-wrap: wrap;
  }
  
  .modal-content {
    padding: 20px;
  }
}
