* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #F6F6F6;
    --text-primary: #101413;
    --accent: #00AA9E;
    --card-bg: #FFFFFF;
    --card-border: #E5E5E5;
    --secondary-bg: #FAFAFA;
    --accent-light: #E6F7F6;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fafafad2;
    border-bottom: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    animation: slideDown 0.8s ease-out;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-weight: 500;
    font-size: 1.8rem;
    color: var(--accent);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Button Styles */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-primary:hover {
    background: #008A7F;
}

.btn-secondary {
    background: var(--card-bg);
    color: var(--text-primary);
    border: 1px solid var(--card-border);
}

.btn-secondary:hover {
    background: var(--secondary-bg);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Simple Beautiful Hero */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bg-primary) 0%, rgba(0, 170, 158, 0.05) 100%);
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-text {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    margin-top: 8rem;
    margin-bottom: 8rem;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.1;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.title-line:first-child {
    animation-delay: 0.5s;
}

.title-line:last-child {
    animation-delay: 0.7s;
}

.title-p1 {
    color: #00AA9E;
}

.title-p2 {
    color: #101413;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(16, 20, 19, 0.7);
    margin-bottom: 0;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    margin-bottom: 6rem;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

.hero-image img {
    width: 1024px;
    transition: transform 0.3s ease-out;
    will-change: transform;
}


.accent {
    color: var(--accent);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--card-bg);
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.feature-card:hover {
    background: var(--accent-light);
    border-color: var(--accent);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: var(--accent);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: rgba(16, 20, 19, 0.7);
    line-height: 1.6;
}

/* Download Section */
.download {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, rgba(0, 170, 158, 0.05) 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(16, 20, 19, 0.7);
    margin-bottom: 3rem;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.download-card {
    position: relative;
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 20px;
    padding: 0;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.download-card:hover .download-overlay {
    opacity: 1;
}

.download-card:hover .download-content {
    opacity: 0;
}

.download-card.coming-soon:hover .download-overlay {
    background: rgba(16, 20, 19, 0.9);
}

.download-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
    border-radius: 18px;
}

.overlay-icon {
    width: 32px;
    height: 32px;
    color: white;
}

.overlay-icon svg {
    width: 100%;
    height: 100%;
}

.overlay-text {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.download-content {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.download-icon {
    width: 40px;
    height: 40px;
    color: var(--accent);
    transition: all 0.3s ease;
}

.download-icon svg {
    width: 100%;
    height: 100%;
}

.download-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    transition: color 0.3s ease;
}

.download-badge {
    display: none;
}

.coming-soon-badge {
    background: var(--secondary-bg);
    color: rgba(16, 20, 19, 0.6);
}

.download-card.coming-soon {
    opacity: 0.7;
    cursor: default;
}

.download-card.coming-soon:hover {
    transform: scale(1.01);
}

.download-card.coming-soon .download-overlay {
    background: linear-gradient(135deg, rgba(16, 20, 19, 0.8) 0%, rgba(16, 20, 19, 0.6) 100%);
}

/* Support Section */
.support {
    padding: 6rem 0;
    background: var(--card-bg);
}

.support-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.support-form-container {
    background: var(--secondary-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.support-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background: var(--card-bg);
    color: var(--text-primary);
    transition: all 0.3s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--card-bg);
    box-shadow: 0 0 0 3px rgba(0, 170, 158, 0.1);
}

.form-group textarea {
    min-height: 120px;
    line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(16, 20, 19, 0.5);
}

.support-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.support-card {
    background: var(--accent-light);
    border: 1px solid rgba(0, 170, 158, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.support-card:hover {
    background: rgba(0, 170, 158, 0.1);
    border-color: var(--accent);
}

.support-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: var(--accent);
}

.support-icon svg {
    width: 100%;
    height: 100%;
}

.support-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.support-card p {
    color: rgba(16, 20, 19, 0.7);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.support-email {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--accent);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.support-email:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

.support-details {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.support-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.detail-icon {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.detail-icon svg {
    width: 100%;
    height: 100%;
}

/* Form Messages */
.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 500;
    animation: fadeInUp 0.3s ease-out;
}

.form-message-success {
    background: rgba(0, 170, 158, 0.1);
    color: var(--accent);
    border: 1px solid rgba(0, 170, 158, 0.3);
}

.form-message-error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    padding-bottom: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Animations */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Scroll Effects */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: linear-gradient(135deg, var(--bg-primary) 0%, rgba(0, 170, 158, 0.03) 100%);
    z-index: -1;
    will-change: transform;
}

/* Enhanced Mobile Header */
.mobile-nav {
    position: fixed;
    top: 80px;
    /* Start below the header */
    left: 0;
    right: 0;
    background: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Hero Mobile Download Button */
.hero-mobile-download {
    display: none;
    justify-content: center;
    margin-top: 4rem;
    animation: fadeInUp 1s ease-out 1.1s forwards;
    opacity: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-buttons {
        display: none;
    }

    .hero-mobile-download {
        display: flex;
    }

    /* Mobile Hero Improvements */
    .hero {
        padding: 100px 0 60px;
        min-height: 90vh;
    }

    .hero-text {
        margin-top: 2rem;
        margin-bottom: 3rem;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-image {
        margin-bottom: 2rem;
    }

    .hero-image img {
        width: 100%;
        max-width: 400px;
        height: auto;
    }

    .nav-container {
        padding: 1rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .download-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .download-content {
        padding: 1.5rem;
    }

    /* Mobile Footer Improvements */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-brand h3 {
        font-size: 1.3rem;
    }

    .footer-brand p {
        font-size: 0.9rem;
        margin-top: 0.25rem;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        padding-bottom: 1rem;
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {

    /* Mobile Hero for Small Screens */
    .hero {
        padding: 90px 0 40px;
        min-height: 85vh;
    }

    .hero-text {
        margin-top: 1rem;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        line-height: 1.3;
    }

    .hero-image img {
        max-width: 320px;
    }

    .download-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0.75rem 1rem;
    }

    /* Mobile Nav Adjustments */
    .mobile-nav {
        top: 70px;
        padding: 1.5rem;
    }

    /* Enhanced Mobile Footer */
    .footer {
        padding: 1.5rem 0 0.5rem;
    }

    .footer-content {
        gap: 1rem;
    }

    .footer-brand h3 {
        font-size: 1.2rem;
    }

    .footer-links {
        gap: 1rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding-top: 1rem;
        font-size: 0.75rem;
    }
}


@keyframes ripple-effect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Enhanced download card animations */
.download-card {
    will-change: transform;
}

.download-card .download-overlay {
    will-change: transform, opacity;
}

.download-card .download-icon {
    will-change: transform;
}

.download-card .download-badge {
    will-change: transform;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
.device-mockup img {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.5s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes typewriter {
    to {
        width: 100%;
    }
}

@keyframes blink {

    0%,
    50% {
        border-color: var(--accent);
    }

    51%,
    100% {
        border-color: transparent;
    }
}



/* Enhanced button hover effects */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* Stagger animation for download cards */
.download-card:nth-child(1) {
    animation-delay: 0.1s;
}

.download-card:nth-child(2) {
    animation-delay: 0.2s;
}

.download-card:nth-child(3) {
    animation-delay: 0.3s;
}

.download-card:nth-child(4) {
    animation-delay: 0.4s;
}

.download-card:nth-child(5) {
    animation-delay: 0.5s;
}

.download-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* Performance optimizations */
.device-showcase,
.download-overlay,
.parallax-bg {
    will-change: transform;
}

/* Focus states for accessibility */
.btn:focus,
.download-card:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .parallax-bg,
    .device-showcase {
        transform: none !important;
    }
}

/* Image 
Section */
.image-section {
    padding: 4rem 0;
    background: var(--secondary-bg);
}

.image-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 0px;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.image-container img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

/* Enhanced flat design improvements */
.features {
    background: var(--card-bg);
}

.hero {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--accent-light) 100%);
}

.download {
    background: var(--bg-primary);
}

/* Remove all remaining shadows and make it flatter */
.btn,
.download-card,
.feature-card,
.device-mockup {
    box-shadow: none !important;
}

/* Enhanced card grid for mobile */
@media (max-width: 768px) {
    .download-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .download-content {
        padding: 1rem;
        gap: 0.5rem;
    }

    .download-icon {
        width: 32px;
        height: 32px;
    }

    .download-card h3 {
        font-size: 0.9rem;
    }

    .overlay-icon {
        width: 28px;
        height: 28px;
    }

    .overlay-text {
        font-size: 0.8rem;
    }

    .image-container img {
        height: 250px;
    }

    /* Support Section Mobile */
    .support-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .support-info {
        position: static;
        order: 2;
    }

    .support-form-container {
        padding: 2rem;
        order: 1;
    }

    .support-card {
        padding: 1.5rem;
    }

    .support-icon {
        width: 40px;
        height: 40px;
    }

    .support-card h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .download-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .download-content {
        padding: 0.75rem;
        gap: 0.5rem;
    }

    .download-icon {
        width: 28px;
        height: 28px;
    }

    .download-card h3 {
        font-size: 0.8rem;
    }

    .overlay-icon {
        width: 24px;
        height: 24px;
    }

    .overlay-text {
        font-size: 0.75rem;
    }

    .image-container img {
        height: 200px;
    }

    /* Support Section Small Mobile */
    .support {
        padding: 4rem 0;
    }

    .support-form-container {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 0.9rem;
    }

    .support-card {
        padding: 1.25rem;
    }

    .support-email {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* P
olicy Pages Styles */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 2rem 4rem;
    line-height: 1.7;
}

.policy-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.policy-content .last-updated {
    color: rgba(16, 20, 19, 0.6);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 2rem;
}

.policy-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 2rem 0 1rem;
}

.policy-content p {
    margin-bottom: 1rem;
    color: rgba(16, 20, 19, 0.8);
}

.policy-content ul {
    margin: 1rem 0 1rem 1.5rem;
    color: rgba(16, 20, 19, 0.8);
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.policy-content a {
    color: var(--accent);
    text-decoration: none;
}

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

.policy-content .important-note {
    background: var(--accent-light);
    border-left: 4px solid var(--accent);
    padding: 1rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.policy-content .important-note p {
    margin: 0;
    color: var(--text-primary);
}

/* Mobile Policy Pages */
@media (max-width: 768px) {
    .policy-content {
        padding: 100px 1rem 3rem;
    }

    .policy-content h1 {
        font-size: 2rem;
    }

    .policy-content h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .policy-content {
        padding: 90px 1rem 2rem;
    }

    .policy-content h1 {
        font-size: 1.8rem;
    }

    .policy-content h2 {
        font-size: 1.2rem;
    }

    .policy-content ul {
        margin-left: 1rem;
    }
}