body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: white;
    line-height: 1.5;
}

.page {
    min-height: 100vh;
    overflow: visible;
}

.header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    overflow: visible;
}

.logo {
    width: 120px;
    display: block;
}

.menu-btn {
    background: white;
    border: none;
    font-size: 32px;
    cursor: pointer;
    padding: 8px 14px;
    line-height: 1.3;
}

.language-menu {
    display: none;
    position: absolute;
    top: 80px;
    right: 25px;
    background: white;
    border-radius: 12px;
    padding: 10px;
    min-width: 170px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 10;
    overflow: visible;
}

.language-menu a {
    display: block;
    padding: 12px;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    line-height: 1.5;
}

.language-menu a:hover {
    background: #f1f1f1;
    border-radius: 8px;
}

.content {
    width: 100%;
    padding: 15px 20px 20px 20px; /* reduced top padding */
    box-sizing: border-box;
    text-align: center;
    overflow: visible;
}

.video-section iframe {
    width: 100%;
    max-width: 1400px;
    height: 650px;
    border: none;
    border-radius: 12px;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.btn {
    width: 160px;           /* same width for both */
    padding: 15px 0;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    color: white;
    text-align: center;
    box-sizing: border-box;
}

.free {
    background: #455FD9;
}

.paid {
    background: #ffb703;
}

.app-logo {
    width: 160px;
    margin-bottom: 35px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin: 25px 0; /* reduced from 35px */
}

.socials a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 25px;
    transition: 0.3s;
    line-height: 1;
}

.socials a:hover {
    transform: scale(1.1);
}

.linkedin {
    background: #0077b5;
}

.whatsapp {
    background: #25d366;
}

.gumroad {
    background: #ff90e8;
}

.about-content {
    width: 100%;
    color: #333;
    overflow: visible;
}

.about-box {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 10px 0 10px 10px; /* reduced from 25px top */
    background: transparent;
    color: #333;
    text-align: left;
    line-height: 1.7;
    box-sizing: border-box;
    overflow: visible;
}

.about-box h2 {
    color: #222;
    margin: 5px 0 20px 0; /* reduced from 30px bottom */
    padding: 0;
    line-height: 1.5;
    font-weight: bold;
}

.about-box p {
    margin: 0 0 16px 0; /* reduced from 22px */
    line-height: 1.7;
}

.about-box strong {
    font-weight: bold;
    line-height: 1.5;
}

@media (max-width: 768px) {

    .video-section iframe {
        height: 240px;
    }

    .logo {
        width: 90px;
    }

    .btn {
        width: 180px;
    }

    .content {
        padding-top: 10px;
    }
}