body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff8f6;
  color: #333;
}

header {
  background: #ff6f61;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  align-items: center;
  position: sticky;
  top: 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.hero {
  background: url('Cake Shop in Ongole (3).jpg') no-repeat center center/cover;
  color: white;
  padding: 6rem 2rem;
  text-align: center;
}

.cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  background: #fff;
  color: #ff6f61;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.gallery {
  padding: 4rem 2rem;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.about, .contact {
  padding: 4rem 2rem;
  background: #fff8f6;
}

footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 1rem;
}

.faq-section {
      max-width:1200px;
      margin: auto;
      background: white; 
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    details {
      border-top: 1px solid #ccc;
      padding: 15px 0;
    }

    summary {
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      position: relative;
      list-style: none;
    }

    summary::marker {
      display: none;
    }

    summary::after {
      content: '+';
      position: absolute;
      right: 0;
      font-size: 20px;
      transition: transform 0.3s;
    }

    details[open] summary::after {
      content: '-';
    }

    details p {
      margin-top: 10px;
      padding-left: 5px;
      color: #555;
    }

button {
      padding: 12px 24px;
      font-size: 16px;
      border: none;
      background-color: #007BFF;
      color: white;
      cursor: pointer;
      border-radius: 5px;
      transition: background-color 0.3s ease;
    }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0; }
    }

    button:hover {
      animation: blink 0.8s infinite;
    }
