/* 
Main Stylesheet for CliffGrove
Theme: Tour Operator
*/

/* ======= Base Styles ======= */
:root {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: #e67e22;
  --light-color: #ecf0f1;
  --dark-color: #2c3e50;
  --success-color: #27ae60;
  --error-color: #e74c3c;
  --text-color: #333;
  --text-light: #7f8c8d;
  --background-color: #fff;
  --border-color: #ddd;
  --border-radius: 5px;
  --box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

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

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

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

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

ul {
  list-style: none;
}

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

.btn {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  padding: 12px 25px;
  border-radius: var(--border-radius);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
}

.btn:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 20px;
  line-height: 1.3;
  color: var(--dark-color);
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 20px;
}

section {
  padding: 60px 0;
}

/* ======= Header ======= */
header {
  padding: 15px 0;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo img {
  max-height: 60px;
}

nav ul {
  display: flex;
}

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

nav ul li a {
  color: var(--dark-color);
  font-weight: 600;
  padding: 10px 0;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--secondary-color);
  transition: width 0.3s;
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

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

/* ======= Welcome Text ======= */
.welcome-text {
  background-color: var(--secondary-color);
  color: white;
  padding: 15px 0;
  text-align: center;
}

.welcome-text p {
  margin-bottom: 0;
  font-size: 1.1rem;
}

/* ======= 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: 150px 0;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: white;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 40px;
}

/* ======= Features Section ======= */
.features .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

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

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

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #ecf0f1;
  margin-bottom: 20px;
}

.feature-icon svg {
  color: var(--secondary-color);
  width: 35px;
  height: 35px;
}

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

/* ======= Expert Interview Section ======= */
.expert-interview {
  background-color: #f9f9f9;
}

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

.interview-content img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.interview-text h3 {
  margin-bottom: 25px;
  color: var(--primary-color);
}

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

/* ======= Destinations Section ======= */
.destinations h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.destination {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.destination:hover {
  transform: translateY(-10px);
}

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

.destination h3 {
  padding: 20px 20px 0;
  margin-bottom: 10px;
}

.destination p {
  padding: 0 20px 20px;
  color: var(--text-light);
}

.destinations .btn {
  display: block;
  width: max-content;
  margin: 0 auto;
}

/* ======= Testimonials Section ======= */
.testimonials {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.testimonials h2 {
  color: white;
}

.testimonial {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
}

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

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
}

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

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

/* ======= Latest Posts Section ======= */
.latest-posts h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

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

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

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

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

.post p {
  padding: 0 20px;
  color: var(--text-light);
}

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

.latest-posts .btn {
  display: block;
  width: max-content;
  margin: 0 auto;
}

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

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

.footer-logo img {
  max-width: 150px;
  margin-bottom: 20px;
}

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

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

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

.footer-links ul li a {
  color: #bdc3c7;
  transition: var(--transition);
}

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

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

.footer-contact svg {
  margin-right: 10px;
}

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

.social-icons {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.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);
  margin: 0 10px;
  transition: var(--transition);
}

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

.social-icons svg {
  width: 20px;
  height: 20px;
  color: white;
}

/* ======= Cookie Consent ======= */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(52, 73, 94, 0.95);
  color: white;
  padding: 20px;
  z-index: 1000;
  display: none;
}

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

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

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

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

.btn-decline {
  background-color: transparent;
  border: 1px solid white;
}

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

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

/* ======= Page Header ======= */
.page-header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/11.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 0;
}

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

/* ======= About Page Styles ======= */
.about-intro {
  padding-bottom: 0;
}

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

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

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

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

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

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #ecf0f1;
  margin-bottom: 20px;
}

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

.team {
  background-color: #f9f9f9;
}

.team h2 {
  text-align: center;
}

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

.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;
  transition: var(--transition);
}

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

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

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

.team-member p {
  padding: 0 20px;
  margin-bottom: 15px;
}

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

.team-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding-bottom: 20px;
}

.team-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #f1f1f1;
  transition: var(--transition);
}

.team-social a:hover {
  background-color: var(--secondary-color);
}

.team-social a:hover svg {
  color: white;
}

.certifications {
  text-align: center;
}

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

.certification img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin: 0 auto 20px;
  border-radius: 50%;
}

.cta {
  background-color: var(--secondary-color);
  color: white;
  text-align: center;
}

.cta h2 {
  color: white;
}

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

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

/* ======= Blog Page Styles ======= */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.blog-post {
  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-post:hover {
  transform: translateY(-5px);
}

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

.post-content {
  padding: 30px;
}

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

.post-category {
  color: var(--secondary-color);
}

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

.newsletter-form input {
  flex: 1;
  padding: 10px 15px;
  border: 2px solid white;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1rem;
}

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

/* ======= Blog Post Styles ======= */
.blog-post-header {
  background-color: var(--primary-color);
  color: white;
  padding: 60px 0;
}

.blog-post-header h1 {
  color: white;
  max-width: 800px;
}

.blog-post-header .post-meta {
  color: rgba(255, 255, 255, 0.7);
}

.blog-post-header .post-category {
  color: var(--accent-color);
}

.blog-post-content {
  padding-top: 40px;
}

.post-main-image {
  margin-bottom: 40px;
}

.post-main-image img {
  width: 100%;
  border-radius: var(--border-radius);
}

.post-body {
  max-width: 800px;
  margin: 0 auto 60px;
}

.post-body h2 {
  margin-top: 40px;
}

.post-body h3 {
  margin-top: 30px;
}

.post-body ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.post-body li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.post-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--secondary-color);
}

.post-image {
  margin: 30px 0;
  text-align: center;
}

.post-image img {
  border-radius: var(--border-radius);
  margin-bottom: 10px;
}

.image-caption {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}

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

.post-quote {
  position: relative;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--dark-color);
  padding: 30px 40px;
  margin: 40px 0;
  background-color: #f9f9f9;
  border-left: 5px solid var(--secondary-color);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.quote-author {
  font-size: 1rem;
  font-style: normal;
  color: var(--text-light);
  margin-top: 10px;
  text-align: right;
}

.post-callout {
  background-color: #f0f9ff;
  border-radius: var(--border-radius);
  padding: 30px;
  margin: 40px 0;
  border-left: 5px solid var(--secondary-color);
}

.post-callout h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.post-conclusion {
  background-color: #f9f9f9;
  border-radius: var(--border-radius);
  padding: 30px;
  margin-top: 50px;
}

.post-conclusion h3 {
  margin-top: 0;
}

.post-author-bio {
  display: flex;
  gap: 30px;
  background-color: #f9f9f9;
  border-radius: var(--border-radius);
  padding: 30px;
  margin-bottom: 60px;
}

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

.post-author-bio h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: var(--text-light);
}

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

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

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

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

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

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

.related-post h4 {
  padding: 20px 20px 10px;
  font-size: 1.1rem;
}

.related-post a {
  display: inline-block;
  margin: 0 20px 20px;
  font-weight: 600;
}

/* ======= Contact Page Styles ======= */
.contact-intro {
  padding-bottom: 0;
}

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

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

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

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

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

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

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

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

.required {
  color: var(--error-color);
}

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

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.checkbox-container {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-weight: normal;
}

.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: #f1f1f1;
  border-radius: 3px;
}

.checkbox-container:hover .checkmark {
  background-color: #e1e1e1;
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--secondary-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);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(52, 152, 219, 0.1);
}

.info-icon svg {
  color: var(--secondary-color);
}

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

.info-content .subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: -10px;
}

.social-connect {
  margin-top: auto;
}

.social-connect h3 {
  margin-bottom: 20px;
}

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

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

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

.faq-item h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

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

.modal-content {
  background-color: white;
  margin: 10% auto;
  padding: 40px;
  width: 90%;
  max-width: 600px;
  border-radius: var(--border-radius);
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.close-button {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-light);
}

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

.thank-you-message svg {
  color: var(--success-color);
  margin-bottom: 20px;
}

.thank-you-message .btn {
  margin-top: 20px;
}

/* ======= Media Queries ======= */
@media (max-width: 992px) {
  .interview-content,
  .about-content,
  .contact-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    margin-top: 40px;
  }
  
  .blog-post {
    grid-template-columns: 1fr;
  }
  
  .post-image img {
    height: 300px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
  }
  
  nav ul {
    margin-top: 20px;
  }
  
  nav ul li {
    margin: 0 15px;
  }
  
  .hero {
    padding: 100px 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo img {
    margin: 0 auto 20px;
  }
  
  .footer-links h3::after,
  .footer-contact h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-contact p {
    justify-content: center;
  }
  
  .post-author-bio {
    flex-direction: column;
    text-align: center;
  }
  
  .post-author-bio img {
    margin: 0 auto 20px;
  }
  
  .cookie-content {
    text-align: center;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  .post-meta {
    flex-direction: column;
    gap: 5px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input,
  .newsletter-form .btn {
    width: 100%;
    border-radius: var(--border-radius);
    margin-bottom: 10px;
  }
  
  .social-icons {
    flex-wrap: wrap;
  }
}
