
* {
margin: 0;
padding: 0;
box-sizing: border-box;
    color: #fd10ff;
}
body {
font-family: math;
background-color: #000;
color: #333;
line-height: 1.6;
font-size: 16px;
}
header {
background-image: url("../images/banner.webp");
background-size: cover;
background-position: center;
color: white;
text-align: center;
padding: 100px 20px;
}

h1 {
font-size: 30px;
margin-bottom: 20px;
color:#ff0a2a;
text-align:center;
}


header h1 {
font-size: 55px;
margin-bottom: 20px;
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}
header p {
font-size: 22px;
color: #fff;
text-align: center;
}
 nav {
background: #eb059a;
color: #fff;
position: relative;
padding: 15px;
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 1em;
    }

    .nav-links a {
      color: white;
      text-decoration: none;
    }

    .menu-toggle {
      display: none;
      font-size: 1.5em;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      .nav-links {
        flex-direction: column;
        display: none;
        background: #444;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 1em 0;
      }

      .nav-links.active {
        display: flex;
      }

      .menu-toggle {
        display: block;
      }
    }
section {
padding: 20px 20px;
max-width: 1200px;
margin: 0 auto;
}
h2 {
font-size: 30px;
margin-bottom: 20px;
color: #fff;
}

.about {
padding: 50px 20px;
background-color: #cf0446;
}

.about h2 {
text-align: center;
margin-bottom: 40px;
font-size: 2rem;
color: #fff;
}

.about ul {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
list-style: none;
padding: 0;
margin: 0 auto;
max-width: 1200px;
}

.about li {
background-color: #f9f9f9;
border-radius: 10px;
padding: 20px;
box-shadow: 0 4px 8px rgba(0,0,0,0.05);
text-align: center;
transition: transform 0.3s ease;
}

.about li:hover {
transform: translateY(-5px);
}

.about img {
width: 100%;
height: auto;
object-fit: cover;
border-radius: 8px;
margin-bottom: 15px;
}

.about h3 {
font-size: 1.2rem;
color: #222;
margin-bottom: 10px;
}

.about p {
font-size: 0.95rem;
color: #000;
line-height: 1.5;
}

p {
text-align: justify;
color: #fff;
font-size: 17px;
margin-bottom: 10px;
}


.attractions ul {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
}
.attractions li {
background: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
width: calc(33% - 20px);
text-align: center;
transition: transform 0.3s ease;
list-style: none;
}
.attractions li:hover {
transform: scale(1.05);
}
.attractions img {
width: 100%;
height: 200px;
object-fit: cover;
border-radius: 8px;
margin-bottom: 15px;
}
.keywords {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 15px;
margin-top: 40px;
}
.keywords span {
background-color: #ffcc00;
padding: 10px 15px;
border-radius: 25px;
font-size: 12px;
font-weight: bold;
color: #333;
transition: background-color 0.3s ease;
}
.keywords span:hover {
background-color: #0066cc;
color: white;
}
footer {
background: #eb059a;
color: white;
text-align: center;
padding: 30px 20px;
}
footer p {
font-size: 14px;
text-align: center;
}
footer .footer-links a {
color: #ffcc00;
margin: 0 10px;
text-decoration: none;
text-transform: uppercase;
font-weight: bold;
}
footer .footer-links a:hover {
color: white;
}

@media (max-width: 768px) {
header h1 {
font-size: 40px;
}
header p {
font-size: 18px;
}
.attractions li {
width: calc(50% - 20px);
}
}

@media (max-width: 480px) {
header h1 {
font-size: 30px;
}
header p {
font-size: 16px;
}
.attractions li {
width: 100%;
}
}


.pricing-table {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
margin-top: 40px;
}
.pricing-card {
background: white;
border-radius: 10px;
padding: 25px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
width: calc(33% - 20px);
text-align: center;
transition: transform 0.3s ease;
}
.pricing-card:hover {
transform: translateY(-5px);
}
.pricing-card h3 {
margin-bottom: 10px;
color: #0066cc;
}
.pricing-card .price {
font-size: 28px;
color: #333;
margin: 15px 0;
}
.pricing-card ul {
list-style: none;
padding: 0;
margin: 15px 0;
}
.pricing-card ul li {
margin-bottom: 8px;
}
.pricing-card button {
background: #0066cc;
color: white;
border: none;
padding: 10px 20px;
border-radius: 20px;
font-weight: bold;
cursor: pointer;
transition: background 0.3s ease;
}
.pricing-card button:hover {
background: #ffcc00;
color: #333;
}

.faq-section {
max-width: 900px;
margin: 0 auto;
}
.faq-section details {
background: #fff;
margin-bottom: 15px;
padding: 20px;
border-radius: 10px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
cursor: pointer;
}
.faq-section summary {
font-weight: bold;
font-size: 18px;
color: #0066cc;
cursor: pointer;
}
.faq-section p {
margin-top: 10px;
line-height: 1.5;
color: #333;
}

@media (max-width: 768px) {
.pricing-card {
width: calc(50% - 20px);
}
}
@media (max-width: 480px) {
.pricing-card {
width: 100%;
}
}


table {
    border-collapse: collapse;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

th, td {
padding: 15px 20px;
text-align: center;
}

th {
background-color: #78095b;
color: white;
font-size: 16px;
text-transform: uppercase;
letter-spacing: 0.5px;
}

tr:nth-child(even) {
background-color: #fff;
}

tr:hover {
background-color: #e9f1ff;
}

strong {
color: #2d89ef;
}


