html {
    height: 100%;
}

.landing-page-body {
    margin: 0;
    overflow: hidden;
    font-family: 'Noto Sans', sans-serif;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

#background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    object-fit: cover;
}

.content {
    text-align: center;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.5); /* Optional: Adds a dark overlay to make text more readable */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.starrise {
    font-family: 'Work Sans', sans-serif;
    font-weight: normal;
}

.starrise span {
    font-weight: 300;
}

.starrise strong {
    font-weight: 400;
}

h1 {
    font-size: 3.5em;
    margin-bottom: 8px;
    font-weight: 700;
}

p {
    font-size: 0.9em;
    margin: 5px 0;
    font-weight: 300;
}

p a {
    color: white;
    text-decoration: underline;
}

p a:hover {
    text-decoration: none;
}

header {
    padding: 20px 50px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
}

nav button {
    background-color: #EC911C;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.hero {
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 48px;
    max-width: 600px;
    margin: 0 auto 20px;
}

.hero p {
    font-size: 18px;
    max-width: 500px;
    margin: 0 auto 30px;
}

.app-buttons a {
    display: inline-block;
    padding: 15px 30px;
    margin: 0 10px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-weight: 600;
}

.app-store-btn {
    background-color: #268CCC;
}

.play-store-btn {
    background-color: #26A22A;
}

.popular-esim {
    text-align: center;
    padding: 50px 20px;
}

.popular-esim h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.popular-esim p {
    font-size: 18px;
    margin-bottom: 30px;
}

.search-bar {
    margin-bottom: 30px;
}

.search-bar input {
    width: 400px;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.tabs {
    margin-bottom: 30px;
}

.tabs button {
    background: none;
    border: 1px solid #ccc;
    padding: 10px 20px;
    margin: 0 5px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
}

.tabs button.active {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.destinations {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.destination-card {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.destination-card img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.view-all {
    background-color: #EC911C;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
}

.why-starrise {
    text-align: center;
    padding: 50px 20px;
}

.why-starrise h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.feature-card img {
    height: 40px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
}

.how-it-works {
    text-align: center;
    padding: 50px 20px;
    background-color: #000;
    color: #fff;
}

.how-it-works h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.how-it-works p {
    font-size: 18px;
    margin-bottom: 40px;
}

.qr-code {
    width: 150px;
    height: 150px;
}

.testimonials {
    padding: 50px 20px;
    text-align: center;
}

.testimonials h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.testimonials p {
    font-size: 18px;
    margin-bottom: 40px;
}

.testimonial-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    max-width: 400px;
    text-align: left;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.author div {
    display: flex;
    flex-direction: column;
}

.author strong {
    font-weight: 600;
}

.author span {
    color: #666;
}

.faq {
    padding: 50px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.faq-item {
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
}

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

.faq-answer p {
    padding: 15px 0 0;
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

/* Styles for privacy policy page */
.privacy-body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 20px;
    overflow: auto;
    min-height: 100vh;
}

.privacy-content {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.privacy-content h1 {
    font-size: 2.5em;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.privacy-content h2 {
    font-size: 1.8em;
    color: #1a1a1a;
    margin-top: 30px;
    margin-bottom: 15px;
}

.privacy-content p {
    margin-bottom: 15px;
}

.privacy-content a {
    color: #0070c9;
    text-decoration: none;
}

.privacy-content a:hover {
    text-decoration: underline;
}

.privacy-body ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.privacy-body li {
    margin-bottom: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content {
        padding: 30px;
        width: 90%; /* Make content take up more width on smaller screens */
    }

    h1 {
        font-size: 2.5em; /* Smaller font size for tablets */
    }

    p {
        font-size: 0.8em; /* Smaller paragraph font size */
    }
}

@media (max-width: 480px) {
    .content {
        padding: 20px;
        width: 95%; /* Even more width for very small screens */
    }

    h1 {
        font-size: 2em; /* Even smaller font size for mobile phones */
    }

    p {
        font-size: 0.7em; /* Smallest paragraph font size */
    }
} 