body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #f7f7f9;
    color: #222;
}

.hero-bg {
    min-height: 100vh;
    background: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}
.hero-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(30, 30, 30, 0.55);
    z-index: 0;
}

header {
    position: relative;
    z-index: 2;
    background: transparent;
    padding: 2rem 0 0.5rem 0;
}
.container.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.nav-logo {
    width: 52px;
    height: 52px;
    display: block;
}
nav a {
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    margin-left: 2.5rem;
    font-size: 1.2rem;
    transition: color 0.2s;
    letter-spacing: 1px;
}
nav a:hover {
    color: #ffbfae;
}

.hero {
    position: relative;
    z-index: 2;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 5vh;
    padding: 3rem 2rem 2rem 2rem;
    background: rgba(255,255,255,0.18);
    border-radius: 32px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,0.25);
}
.hero h1 {
    font-family: 'Bebas Neue', Arial, sans-serif;
    color: #fff;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
    line-height: 1.05;
    letter-spacing: 2px;
    text-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.hero-tagline {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #ffbfae;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}
.hero-desc {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.cta-btn {
    background: linear-gradient(90deg, #ffbfae 0%, #ff7a1a 100%);
    color: #fff;
    font-size: 1.4rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    padding: 1.1rem 3.5rem;
    border: none;
    border-radius: 32px;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(255, 122, 26, 0.18);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    display: inline-block;
    letter-spacing: 1px;
}
.cta-btn:hover {
    background: linear-gradient(90deg, #ff7a1a 0%, #ffbfae 100%);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 32px rgba(255, 122, 26, 0.25);
}

.download-icon {
    vertical-align: middle;
    margin-right: 0.5em;
    margin-bottom: 2px;
}

@media (max-width: 900px) {
    .container.nav-container {
        flex-direction: column;
        gap: 1.2rem;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero {
        padding: 2rem 1rem;
    }
    .cta-btn {
        font-size: 1.1rem;
        padding: 0.8rem 2rem;
    }
}

.why {
    margin-top: 3rem;
    text-align: center;
}
.why h2 {
    color: #ff7a1a;
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 2rem;
}
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.feature-card {
    border: 2px solid #ff7a1a;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    background: #fff;
    width: 300px;
    box-sizing: border-box;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.feature-card h3 {
    color: #ff7a1a;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.feature-card p {
    color: #222;
    font-size: 1.05rem;
    margin: 0;
}

footer {
    margin-top: 3rem;
    padding: 2rem 0 1rem 0;
    background: #fff;
    text-align: center;
    color: #888;
    font-size: 1rem;
}

.contact {
    background: #f5f3ee;
    padding: 3rem 0 4rem 0;
    width: 100%;
}
.contact-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}
.contact-info-left {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2rem 1rem 2rem 2rem;
}
.contact-info-left h2 {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #4a5a54;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}
.contact-info-left p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.15rem;
    color: #222;
    margin: 0;
    line-height: 1.6;
}
.contact-info-right {
    flex: 1 1 55%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2rem 2rem 2rem 1rem;
    gap: 2.5rem;
}
.contact-detail {
    margin-bottom: 1.5rem;
}
.contact-label {
    display: block;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.1rem;
    color: #888;
    font-weight: 600;
    margin-bottom: 0.3rem;
}
.contact-value {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.25rem;
    color: #222;
    font-weight: 500;
}
.contact-value a {
    color: #e2a48a;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
}
.contact-value a:hover {
    color: #d18a6e;
    text-decoration: underline;
}
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    .contact-info-left, .contact-info-right {
        padding: 1rem 0;
        align-items: flex-start;
    }
    .contact-info-left h2 {
        font-size: 2rem;
    }
    .contact-value {
        font-size: 1.1rem;
    }
}

.privacy-policy-title {
    text-align: center;
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #4a5a54;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}
.privacy-content {
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    border: 2px solid #ff7a1a;
    border-radius: 16px;
    padding: 2rem 2.5rem;
    max-width: 800px;
    margin: 2rem auto;
    color: #222;
    font-size: 1.1rem;
    text-align: left;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.privacy-content h3 {
    color: #ff7a1a;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}
.privacy-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}
.privacy-content li {
    margin-bottom: 0.5rem;
}
.privacy-content a {
    color: #ff7a1a;
    text-decoration: none;
    font-weight: 600;
}
.privacy-content a:hover {
    text-decoration: underline;
}

.about {
    background: #f5f3ee;
    width: 100%;
    padding: 0;
    margin: 0;
}
.about-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 60vh;
    background: #f5f3ee;
}
.about-img {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f3ee;
    min-width: 0;
}
.about-img img {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    object-fit: cover;
    margin: 3rem 0 3rem 0;
}
.about-content {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem 4rem;
    background: #f5f3ee;
}
.about-content h2 {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #4a5a54;
    margin: 0 0 1.5rem 0;
    line-height: 1;
    letter-spacing: 1px;
}
.about-content h2 span {
    display: block;
}
.about-content p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.18rem;
    color: #444;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}
.about-btn {
    background: #e2a48a;
    color: #fff;
    font-size: 1.25rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    padding: 1rem 3rem;
    border: none;
    border-radius: 32px;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(226, 164, 138, 0.18);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    display: inline-block;
    letter-spacing: 1px;
}
.about-btn:hover {
    background: #d18a6e;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 32px rgba(226, 164, 138, 0.25);
}
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        padding: 0 1rem;
    }
    .about-img img {
        margin: 2rem auto 0 auto;
        max-width: 90vw;
    }
    .about-content {
        padding: 2rem 1rem;
        align-items: center;
        text-align: center;
    }
    .about-content h2 {
        font-size: 2.1rem;
    }
    .about-btn {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }
}

.socials {
    background: #f5f3ee;
    padding: 3rem 0 4rem 0;
    text-align: center;
}
.socials-title {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #4a5a54;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}
.socials-gallery {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.socials-gallery img {
    width: 270px;
    height: 270px;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    background: #eee;
    transition: transform 0.2s, box-shadow 0.2s;
}
.socials-gallery img:hover {
    transform: scale(1.04) translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.socials-btn {
    background: #e2a48a;
    color: #fff;
    font-size: 1.25rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    padding: 1rem 3rem;
    border: none;
    border-radius: 32px;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(226, 164, 138, 0.18);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    display: inline-block;
    letter-spacing: 1px;
    margin-top: 1.5rem;
}
.socials-btn:hover {
    background: #d18a6e;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 32px rgba(226, 164, 138, 0.25);
}
@media (max-width: 1100px) {
    .socials-gallery {
        gap: 1rem;
    }
    .socials-gallery img {
        width: 40vw;
        max-width: 220px;
        height: 40vw;
        max-height: 220px;
    }
}
@media (max-width: 700px) {
    .socials-gallery {
        flex-direction: column;
        align-items: center;
    }
    .socials-gallery img {
        width: 90vw;
        max-width: 350px;
        height: 50vw;
        max-height: 200px;
    }
}

.privacy-link-section {
    background: #f5f3ee;
    padding: 3rem 0 3.5rem 0;
    text-align: center;
}
.privacy-link-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1rem;
}
.privacy-link-title {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 2.1rem;
    font-weight: 900;
    color: #4a5a54;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}
.privacy-link-desc {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 2rem;
    line-height: 1.5;
}
.privacy-link-btn {
    background: #e2a48a;
    color: #fff;
    font-size: 1.15rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    padding: 0.9rem 2.5rem;
    border: none;
    border-radius: 32px;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(226, 164, 138, 0.18);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    display: inline-block;
    letter-spacing: 1px;
}
.privacy-link-btn:hover {
    background: #d18a6e;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 32px rgba(226, 164, 138, 0.25);
} 