
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.8;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: #1a1a1a;
    padding: 20px 0;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: #ffffff;
    text-decoration: none;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 700;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #00aaff;
}

.hero {
    text-align: center;
    padding: 100px 20px;
    background: url('https://images.unsplash.com/photo-1508098682722-e95fb63a4e16?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    background: #00aaff;
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: background 0.3s, transform 0.3s;
    margin: 5px;
}

.btn:hover {
    background: #0088cc;
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #00aaff;
}

.btn-secondary:hover {
    background: #00aaff;
}

.section {
    padding: 80px 0;
    text-align: center;
}

.section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    text-align: left;
}

.feature-item {
    background: #2a2a2a;
    padding: 40px;
    border-radius: 15px;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-item i {
    font-size: 3rem;
    color: #00aaff;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.video-section {
    padding: 80px 0;
    text-align: center;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 15px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gallery-section {
    padding: 80px 0;
}

.gallery-container {
    position: relative;
    max-width: 250px; /* Adjusted for phone screenshot aspect ratio */
    height: 400px; /* Adjusted for phone screenshot aspect ratio */
    margin: auto;
    overflow: hidden;
    border-radius: 15px;
    background-color: #000; /* Added background for letterboxing */
}

.gallery-slide {
    display: none;
    height: 60%;
}

.gallery-slide img {
    width: 60%;
    height: 60%;
    vertical-align: middle;
    object-fit: contain; /* Changed to contain to show the whole image */
}

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

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #717171;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #00aaff;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

.cta {
    background: #00aaff;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    border-radius: 20px;
}

.cta h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta .btn {
    background: #ffffff;
    color: #00aaff;
}

.cta .btn:hover {
    background: #eee;
}

footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 40px;
    background: #111;
}

footer p {
    margin: 0 0 10px 0;
}

footer a {
    color: #00aaff;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

/* For policy pages */
.page-header {
    padding: 60px 20px;
    text-align: center;
    background-color: #222;
    border-bottom: 1px solid #333;
}
.page-header h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
}
.content-section {
    padding: 40px 20px;
    background-color: #1e1e1e;
    border-radius: 8px;
    margin-top: 40px;
}

.content-section h2 {
    font-family: 'Oswald', sans-serif;
    color: #00aaff;
    font-size: 2rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.content-section p, .content-section ul {
    line-height: 1.8;
    font-size: 1.1rem;
}
.content-section ul {
    list-style-position: inside;
}
