:root {
    --primary-color: #0DD9D9;
    --secondary-color: #00A3A3;
    --text-color: #333333;
    --text-light: #777777;
    --background-color: #ffffff;
    --background-alt: #f8f9fb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    background: -webkit-linear-gradient(135deg, var(--background-color), var(--background-alt));
    background-color: linear-gradient(135deg, var(--background-color), var(--background-alt));
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    /* justify-content: center;  */
    padding: 20px;
}

.container {
    width: 100%;
    /* max-width: 1200px; */
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: center;
    align-items: center;
    padding: 60px;
    margin: 0 auto;
}

/* Left side content */
.content {
    flex: 1;
    min-width: 300px;
    max-width: 650px;
    padding-right: 100px;
    align-self: flex-start;
}

.logo {
    margin-bottom: 60px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo {
    height: 50px;
    width: auto;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.logo p {
    font-size: 14px;
    color: #333;
    letter-spacing: 0.8px;
}

.headline {
    font-size: 54px;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.description {
    font-size: 18px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 40px;
}

.app-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.app-button {
    background: white;
    border-radius: 14px;
    padding: 14px 25px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.app-button:hover {
    transform: translateY(-3px);
}

.app-button svg {
    /* width: 24px;
    height: 24px; */
    margin-right: 15px;
    flex-shrink: 0;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.social-icon:hover {
    background-color: #ddd;
}

/* Right side phone mockup */
.phone-mockup {
    flex: 0 0 auto;
    /* flex: 1; */
    width: 350px;
    position: relative;
    align-self: center;
}

.phone-frame {
    /* width: 100%; */
    background: white;
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.phone-screen {
    border-radius: 25px;
    overflow: hidden;
    background: #f8f8f8;
    aspect-ratio: 9/19.5;
}

.phone-screen img {
    width: 100%;
    display: block;
    object-fit: cover;
    display: block;
}

/* @media (min-width: 1200px) {
    .container {
        padding: 40px 0 40px 60px;
    }
} */

.footer {
    padding: 20px 0;
    margin-top: 60px;
    width: 100%;
    background-color: var(--background-alt);
}

.footer-container {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    padding: 0 20px;
    text-align: left;
}

.copyright {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    text-align: left;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
    /* justify-content: flex-start; */
}

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

/* Responsive adjustments */
@media (max-width: 820px) {
    .container {
        flex-direction: column;
        align-items: center;
    }
    
    .content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .logo {
        text-align: start;
    }
    
    .headline {
        font-size: 40px;

    }
    
    .app-buttons {
        justify-content: center;
    }

    .app-button span {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .phone-mockup {
        width: 280px;
    }

    .footer-links {
        gap: 15px;
    }

    .footer-links a {
        font-size: 12px;
    }

    .phone-mockup {
        margin-left: 0;
    }
}

@media (max-width: 450px) {
    .logo h1  {
        font-size: 24px;
    }
    .logo p {
        font-size: 14px;
    }
    .container {
        padding: 20px;
    }

    .headline {
        font-size: 28px;    
    }

    .description {
        font-size: 16px;
    }

    .app-buttons  {
        justify-content:center;
    }

    .app-button {
        padding: 10px 15px;
        
    }

    .app-button span {
        font-size: 12px;
    }
}