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

/* Added html overflow-x hidden and max-width to prevent horizontal scroll */
html {
  overflow-x: hidden;
}

:root {
  --color-brown: #5d4e37;
  --color-cream: #faf8f3;
  --color-white: #ffffff;
  /* Updated all text colors to #36454F */
  --color-text: #36454f;
  --color-text-light: #36454f;
  /* Added new accent color for buttons */
  --color-accent: #bfd3ab;
  --font-heading: "Figtree", sans-serif;
  --font-body: "Figtree", sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  /* Added width constraint to prevent overflow */
  width: 100%;
  max-width: 100vw;
}

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

/* Header */
/* Updated header to have proper width constraints */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--color-cream);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
  overflow: hidden;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  /* Added position relative for hamburger positioning */
  position: relative;
}

/* Added hamburger button styles */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  /* Updated hamburger color to charcoal */
  background: #36454f;
  border-radius: 3px;
  transition: all 0.3s ease;
}

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

/* Added nav-menu wrapper */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  /* Updated nav link color to charcoal */
  color: #36454f;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.7;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: 500;
  border-radius: 50px;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 14px;
  text-align: center;
}

.btn-primary {
  /* Updated button background to accent color */
  background: var(--color-accent);
  color: var(--color-text);
}

.btn-primary:hover {
  /* Darker hover state for accent color */
  background: #a8c291;
}

.btn-social {
  /* Updated social button background to accent color */
  background: var(--color-accent);
  color: var(--color-text);
  width: 100%;
  margin-bottom: 15px;
}

.btn-social:hover {
  background: #a8c291;
}

.btn-cookie {
  /* Updated cookie button background to accent color */
  background: var(--color-accent);
  color: var(--color-text);
  padding: 8px 20px;
  font-size: 13px;
}

.btn-cookie:hover {
  background: #a8c291;
}

/* Hero Section */
.hero {
  background: var(--color-cream); /* Changed background to cream color */
  padding: 150px 20px 100px;
  text-align: center;
}

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

.hero-logo {
  width: 400px;
  height: auto;
  margin-bottom: 30px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  /* Updated hero h1 color from brown to charcoal */
  color: #36454f;
  margin-bottom: 20px;
  font-weight: 900;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: 30px;
  line-height: 1.8;
}

/* Added lazy-load animation styles */
/* Only hide content, not backgrounds - backgrounds stay visible */
.lazy-load {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.lazy-load.loaded {
  opacity: 1;
  transform: translateY(0);
}

/* Section backgrounds always visible, only content lazy loads */
section.lazy-load {
  opacity: 1;
  transform: none;
}

section.lazy-load > .container,
section.lazy-load > .faq-container,
section.lazy-load > .gallery-carousel,
section.lazy-load > .contact-content-centered,
section.lazy-load > .tropic-content,
section.lazy-load > .testimonials-grid,
section.lazy-load > .services-grid,
section.lazy-load > .about-card,
section.lazy-load > h2,
section.lazy-load > .testimonials-cta {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

section.lazy-load.loaded > .container,
section.lazy-load.loaded > .faq-container,
section.lazy-load.loaded > .gallery-carousel,
section.lazy-load.loaded > .contact-content-centered,
section.lazy-load.loaded > .tropic-content,
section.lazy-load.loaded > .testimonials-grid,
section.lazy-load.loaded > .services-grid,
section.lazy-load.loaded > .about-card,
section.lazy-load.loaded > h2,
section.lazy-load.loaded > .testimonials-cta {
  opacity: 1;
  transform: translateY(0);
}

/* Sections */
section {
  padding: 80px 20px;
}

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

.section-cream {
  background: var(--color-cream);
}

h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  /* Updated h2 color from brown to charcoal */
  color: #36454f;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 900;
}

/* Added Lobster font for About Me section heading */
.about h2 {
  font-family: "Lobster", cursive;
  font-size: 3.5rem;
  /* Left align the heading inside the text column */
  text-align: left;
  margin-bottom: 30px;
}

h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  /* Updated h3 color from brown to charcoal */
  color: #36454f;
  margin-bottom: 15px;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--color-cream);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  min-height: 280px; /* Added min-height to align prices */
  display: flex;
  flex-direction: column;
}

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

/* Added premium service card styling with darker background */
.service-card-premium {
  /* Updated premium card background to accent color */
  background: var(--color-accent);
}

/* Added specific paragraph styling for premium card text */
.service-card-premium h3,
.service-card-premium .price {
  /* Changed premium card text to dark color for contrast */
  color: var(--color-text);
}

.service-card-premium p {
  color: var(--color-text) !important;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.service-card p {
  /* Explicit text color to #36454F */
  color: #36454f;
  margin-bottom: 15px;
}

.price {
  font-size: 1.8rem;
  /* Updated price color to #36454F */
  color: #36454f;
  font-weight: 600;
  margin-top: auto; /* Changed to margin-top auto to push price to bottom */
}

/* About Section */
/* Changed about section to have cream background */
.about {
  background: var(--color-cream);
}

/* Changed about-card background from cream to green accent color */
.about-card {
  background: var(--color-accent);
  border-radius: 30px;
  padding: 50px;
}

.about-grid {
  display: grid;
  /* Image on left (1fr), text on right (2fr) */
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}

.about-text p {
  margin-bottom: 20px;
  /* Updated about text color */
  color: #36454f;
  line-height: 1.8;
}

.about-image {
  display: flex;
  /* Align image to center of its column */
  justify-content: center;
}

.about-image img {
  /* Adjusted image to be smaller and aligned properly to the right side */
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 15px;
  display: block;
}

/* Tropic Section */
/* Added green background with white text for tropic section */
.tropic {
  background: var(--color-accent);
}

/* Changed tropic heading to charcoal instead of white */
.tropic h2 {
  color: var(--color-text);
}

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

/* Added Tropic logo image styling */
.tropic-logo {
  max-width: 250px;
  height: auto;
  margin: 0 auto 30px;
  display: block;
}

.tropic-content p {
  /* Changed tropic text to charcoal instead of white */
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

/* Added tropic buttons container styling */
.tropic-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

/* Added white background for tropic section buttons */
.tropic .btn-primary {
  background: var(--color-white);
  color: var(--color-text);
}

.tropic .btn-primary:hover {
  background: #f5f5f5;
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  /* Changed to 3 columns for desktop */
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Make last testimonial span 2 columns on desktop when in position 5 (after 4 cards in 3-col grid) */
.testimonial-card:last-child:nth-child(3n + 2) {
  grid-column: span 2;
}

.testimonial-card {
  background: var(--color-cream);
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

/* Added stars styling for testimonial rating display */
.stars {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
  /* Updated stars color to charcoal */
  color: #36454f;
}

.testimonial-text {
  font-style: italic;
  /* Updated testimonial text color */
  color: #36454f;
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author {
  /* Updated testimonial author color to charcoal */
  color: #36454f;
  font-weight: 600;
}

/* Added testimonials CTA styling for See more reviews button */
.testimonials-cta {
  text-align: center;
  margin-top: 40px;
}

/* Added Gallery Carousel styles */
/* Gallery Carousel Section */
.gallery {
  padding: 40px 0;
  overflow: hidden;
}

.gallery-carousel {
  width: 100%;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 20px;
  animation: scroll 30s linear infinite;
}

.gallery-slide {
  flex-shrink: 0;
  width: 300px;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-300px * 7 - 20px * 7));
  }
}

/* Pause animation on hover */
.gallery-carousel:hover .gallery-track {
  animation-play-state: paused;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-cream);
  margin-bottom: 15px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 500;
  /* Updated FAQ question color to charcoal */
  color: #36454f;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
}

.faq-question:hover {
  background: rgba(54, 69, 79, 0.03);
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
  padding: 10px 25px 20px;
  /* Updated FAQ answer text color */
  color: #36454f;
  line-height: 1.8;
}

/* Contact Section */
/* Added background image with gradient overlay and centered content */
.contact {
  /* Updated gradient overlay to use accent color */
  background-image: linear-gradient(rgba(191, 211, 171, 0.85), rgba(191, 211, 171, 0.85)), url("/images/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Added Lobster font and increased size for contact heading */
.contact h2 {
  /* Changed heading color to dark text for contrast on light background */
  color: var(--color-text);
  font-family: "Lobster", cursive;
  font-size: 3.5rem;
}

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

.contact-content-centered p {
  /* Updated contact text color */
  color: #36454f;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.contact-buttons {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: center;
  width: 100%;
  margin-top: 40px;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Added contact-top container for side-by-side layout */
.contact-top {
  display: grid;
  /* Using same grid configuration as about section (2fr 1fr) and gap (40px) */
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}

.contact-text p {
  /* Updated contact text color */
  color: #36454f;
  line-height: 1.8;
  margin-bottom: 20px;
}

.contact-image {
  display: flex;
  /* Aligning to flex-start like about section for consistent spacing */
  justify-content: flex-start;
}

.contact-image img {
  /* Matching about image styling with max-width and left alignment */
  width: 100%;
  max-width: 220px;
  height: auto;
  border-radius: 15px;
  display: block;
}

/* Updated contact buttons to span full section width */

/* Added styling for button icons to appear inline with text */
.contact-buttons .btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  /* White background for contact buttons */
  background: var(--color-white);
  color: var(--color-text);
}

.contact-buttons .btn-social:hover {
  /* Slight grey hover for white buttons */
  background: #f5f5f5;
}

.contact-buttons .btn-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Footer */
.footer {
  background: var(--color-text);
  color: var(--color-white);
  padding: 60px 20px 30px;
}

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

.footer-column h4 {
  font-family: var(--font-heading);
  margin-bottom: 15px;
  color: var(--color-white);
}

.footer-column p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 10px;
}

.footer-column a {
  color: var(--color-white);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-column a:hover {
  opacity: 0.7;
}

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

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

.social-icons a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  /* Changed to CSS Grid with 3 equal columns for perfect symmetry */
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}

/* Added specific alignment for footer bottom items */
.footer-bottom p:first-child {
  text-align: left;
}

.footer-bottom p:nth-child(2) {
  text-align: center;
}

.footer-bottom p:last-child {
  text-align: right;
}

.footer-bottom a {
  color: var(--color-white);
  text-decoration: none;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  transition: transform 0.3s ease;
  /* Added shake animation */
  animation: shake 3s linear infinite;
}

.whatsapp-float:hover {
  transform: scale(1.05);
}

.whatsapp-float img {
  width: 200px;
  height: auto;
  display: block;
}

/* Added shake keyframes animation */
@keyframes shake {
  0% {
    transform: translateX(0);
  }
  4% {
    transform: translateX(-4px);
  }
  8% {
    transform: translateX(4px);
  }
  12% {
    transform: translateX(-4px);
  }
  16% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
  padding: 20px 30px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 998;
  max-width: 90%;
  width: 700px;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  font-size: 0.9rem;
  /* Updated cookie banner text color */
  color: #36454f;
  margin: 0;
  flex: 1; /* Added flex: 1; */
}

.cookie-banner a {
  /* Updated cookie banner link color to charcoal */
  color: #36454f;
  text-decoration: underline;
}

/* Added cookie buttons container styling */
.cookie-buttons {
  display: flex;
  gap: 10px;
}

/* Added decline button styling */
.btn-cookie-decline {
  background: var(--color-cream);
  /* Updated decline button text color to charcoal */
  color: #36454f;
}

.btn-cookie-decline:hover {
  background: #f0ede5;
}

/* Added privacy policy page styles */
.privacy-policy {
  padding: 150px 20px 80px;
  min-height: 100vh;
}

.privacy-logo {
  text-align: center;
  margin-bottom: 40px;
}

.privacy-logo img {
  width: 300px;
  height: auto;
}

.privacy-policy h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  /* Updated privacy h1 color to charcoal */
  color: #36454f;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 900;
}

.privacy-date {
  text-align: center;
  /* Updated privacy date text color */
  color: #36454f;
  font-size: 0.95rem;
  margin-bottom: 50px;
}

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

.privacy-content h2 {
  font-size: 1.8rem;
  /* Updated privacy h2 color to charcoal */
  color: #36454f;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
}

.privacy-content h3 {
  font-size: 1.3rem;
  /* Updated privacy h3 color to charcoal */
  color: #36454f;
  margin-top: 30px;
  margin-bottom: 15px;
}

.privacy-content p {
  /* Updated privacy content text color */
  color: #36454f;
  line-height: 1.8;
  margin-bottom: 20px;
}

.privacy-content ul {
  margin-left: 30px;
  margin-bottom: 20px;
}

.privacy-content li {
  /* Updated privacy list text color */
  color: #36454f;
  line-height: 1.8;
  margin-bottom: 10px;
}

.privacy-content a {
  /* Updated privacy link color to charcoal */
  color: #36454f;
  text-decoration: underline;
}

.privacy-content a:hover {
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Fixed mobile nav container to prevent horizontal overflow */
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hamburger {
    display: flex;
    flex-shrink: 0;
  }

  /* Added logo styling for mobile to prevent overflow */
  .nav-container .logo {
    display: none;
  }

  /* Added styling for Book Now button on mobile to appear on right */
  .btn-nav-book {
    flex-shrink: 0;
    padding: 10px 20px;
    font-size: 13px;
  }

  /* Fixed nav-menu positioning to not affect page width */
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--color-cream);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 20px;
    transition: transform 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    align-items: flex-start;
    /* Use transform instead of left for off-canvas positioning */
    transform: translateX(-100%);
    z-index: 1000;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-links {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .nav-links a {
    font-size: 16px;
    display: block;
    width: 100%;
  }

  .nav-menu .btn-primary {
    width: 100%;
  }

  .hero {
    padding: 120px 20px 60px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-logo {
    width: 300px;
  }

  h2 {
    font-size: 1.8rem;
  }

  section {
    padding: 60px 20px;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Added mobile styling for about card */
  .about-card {
    padding: 30px;
    border-radius: 20px;
  }

  /* Reduced Lobster font size for About Me heading on mobile */
  .about h2 {
    text-align: center;
    font-size: 2.5rem;
  }

  /* Stack contact-top vertically on mobile */
  .contact-top {
    grid-template-columns: 1fr;
  }

  /* Keep about image at 50% width on mobile */
  .about-image img {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }

  /* Keep studio image at 50% width on mobile */
  .contact-image img {
    width: 50%;
    max-width: 220px;
  }

  /* Testimonials grid single column on mobile */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Reset span on last testimonial card for single column layout */
  .testimonial-card:last-child:nth-child(3n + 2) {
    grid-column: span 1;
  }

  /* Stack contact buttons vertically on mobile */
  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-buttons .btn-social {
    width: 100%;
    max-width: 280px;
  }

  /* Stack tropic buttons vertically on mobile */
  .tropic-buttons {
    flex-direction: column;
    align-items: center;
  }

  .tropic-buttons .btn-primary {
    width: 100%;
    max-width: 280px;
  }

  /* Reduced Lobster font size for contact heading on mobile */
  .contact h2 {
    font-size: 2.5rem;
  }

  /* Smaller gallery slides on mobile */
  .gallery-slide {
    width: 200px;
    height: 200px;
  }

  /* Smaller WhatsApp button on mobile */
  .whatsapp-float img {
    width: 150px;
  }

  /* Responsive cookie banner */
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    width: calc(100% - 40px);
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

  /* Footer bottom stacks on mobile */
  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom p:first-child,
  .footer-bottom p:nth-child(2),
  .footer-bottom p:last-child {
    text-align: center;
  }
}
