body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #fdf6f7; /* Lighter background to complement theme */
  color: #333;
}
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
}
header {
  background-color: #F3C0C7; /* Theme color */
  color: #444; /* Darker text for light background */
  padding: 20px 0; /* Adjusted padding */
  text-align: center;
    }
    /* Style for the logo */
    header .logo {
    display: block; /* Ensure block display for centering */
    max-height: 60px; /* Control the size, adjust as needed */
    width: auto;      /* Maintain aspect ratio */
    margin: 0 auto 15px auto; /* Center horizontally, add space below */
    }
    header h1 {
  margin: 0 0 5px 0; /* Adjusted margin */
  font-size: 2.5em;
    }
    header p {
  font-size: 1.1em;
  opacity: 0.9;
  margin-top: 0; /* Reduced margin */
    }
    .hero {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
  border-bottom: 1px solid #eee;
  overflow: hidden; /* Contain rotated elements if needed */
    }
    .hero h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #D18A93; /* Darker shade of theme color */
    }

    /* --- Screenshot Display Styles --- */
    .screenshot-container {
  display: flex;
  justify-content: center;
  align-items: center; /* Align items vertically */
  gap: 5px; /* Space between screenshots */
  margin-top: 40px;
  perspective: 1000px; /* Add perspective for 3D transforms */
  min-height: 450px; /* Ensure container has height */
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
    }

    .screenshot {
  width: auto; /* Adjust width based on content */
  max-width: 30%; /* Limit max width */
  height: auto; /* Maintain aspect ratio */
  flex-shrink: 0; /* Prevent shrinking */
  position: relative; /* Needed for z-index and transforms */
    }

    .screenshot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px; /* Rounded corners like iPhone */
  border: 1px solid #ddd; /* Subtle border */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); /* Softer shadow */
  transition: transform 0.3s ease-out; /* Smooth hover effect */
    }

    /* Arrange screenshots with slight overlap and rotation */
    .screenshot:nth-child(1) {
  transform: rotate(-8deg) translateY(-15px) translateX(10px);
  z-index: 1;
    }
    .screenshot:nth-child(2) {
  transform: translateY(5px) scale(1.05); /* Slightly larger and forward */
  z-index: 2; /* Bring middle screenshot to front */
    }
    .screenshot:nth-child(3) {
  transform: rotate(8deg) translateY(-15px) translateX(-10px);
  z-index: 1;
    }

    /* Hover effect */
    .screenshot:hover {
    transform: translateY(-10px) scale(1.08);
    z-index: 3;
    }
    .screenshot:nth-child(1):hover {
    transform: rotate(-8deg) translateY(-20px) translateX(10px) scale(1.08);
    }
     .screenshot:nth-child(3):hover {
    transform: rotate(8deg) translateY(-20px) translateX(-10px) scale(1.08);
    }


    /* --- End Screenshot Display Styles --- */

    .features {
  padding: 40px 0;
  background-color: #fdf6f7; /* Lighter background */
    }
    .features h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #D18A93; /* Darker shade of theme color */
    }
    .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
    }
    .feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
    }
    .feature-item h3 {
  margin-top: 0;
  color: #D18A93; /* Darker shade of theme color */
    }
    .feature-item p {
    flex-grow: 1;
    }
    .feature-item img {
    max-width: 100%;
    height: auto;
    margin-top: 15px;
    border-radius: 4px;
    border: 1px solid #eee;
    }
    .cta {
  background-color: #F3C0C7; /* Theme color */
  color: #444; /* Darker text for light background */
  padding: 50px 20px;
  text-align: center;
    }
    .cta h2 {
  margin-bottom: 20px;
    }
    .cta-button {
  display: inline-block;
  background-color: #fff;
  color: #D18A93; /* Darker shade of theme color */
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 1px solid #D18A93; /* Add border for definition */
    }
    .cta-button:hover {
  background-color: #D18A93; /* Darker shade on hover */
  color: #fff; /* White text on hover */
    }
    footer {
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  color: #666;
  font-size: 0.9em;
  border-top: 1px solid #eee;
  background-color: #fdf6f7; /* Match body background */
    }
    footer p {
        margin: 5px 0; /* Add some spacing between footer lines */
    }
    footer a {
        color: #D18A93; /* Theme color for the link */
        text-decoration: none;
    }
    footer a:hover {
        text-decoration: underline;
    }

    /* Responsive adjustments for screenshots */
    @media (max-width: 768px) {
    .screenshot-container {
    min-height: 350px; /* Adjust height */
    gap: 2px;
    }
    .screenshot {
    max-width: 31%; /* Slightly adjust width */
    }
     .screenshot:nth-child(1) {
    transform: rotate(-8deg) translateY(-10px) translateX(5px);
    }
    .screenshot:nth-child(2) {
    transform: translateY(2px) scale(1.03);
    }
    .screenshot:nth-child(3) {
    transform: rotate(8deg) translateY(-10px) translateX(-5px);
    }
    }
     @media (max-width: 480px) {
    header .logo {
    max-height: 50px; /* Smaller logo on mobile */
    }
    .screenshot-container {
    min-height: 250px; /* Adjust height */
    gap: 0px;
    margin-top: 20px;
    }
    .screenshot {
    max-width: 32%; /* Adjust width */
     border-radius: 10px;
    }
     .screenshot:nth-child(1) {
    transform: rotate(-6deg) translateY(-5px) translateX(3px);
    }
    .screenshot:nth-child(2) {
    transform: translateY(1px) scale(1.01);
    }
    .screenshot:nth-child(3) {
    transform: rotate(6deg) translateY(-5px) translateX(-3px);
    }
     .screenshot img {
     border-radius: 10px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
     }
    }