:root {
    --background: #0B0D19;
    --text: #ffffff;
    --accent: #001cf5;
    --divider: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #0B0D19;
    color: var(--text);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    line-height: 1.5;
}

.container {
    width: 100%;
    max-width: 400px;
    padding: 40px 20px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.profile-pic {
    width: 320px;
    height: auto;
    border-radius: 00%;
    margin-bottom: 60px;
    margin-top: 80px;
}

.social-icon {
    width: 30px;
    height: 30px;
}

.social-icon:hover {
    background: #001cf5;
    border-radius: 50%;
}

.links {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-top: 4px solid var(--text);
}

.link {
    display: flex;
    align-items: center;
    padding: 25px 0;
    text-decoration: none;
    color: var(--text);
    font-size: 24px;
    border-bottom: 4px solid var(--text);
    transition: all 0.2s ease;
}

.link:hover {
    color: #001cf5;
    font-weight: bold;
}

.property-link {
    color: var(--text);
    font-size: 24px;
    text-decoration: none;
    text-align: left;
    transition: all 0.2s ease;
}

.property-link:hover {
    color: #001cf5;
    font-weight: bold;
}

.property-link-top {
    padding-top: 28px;
}

.property-link-second {
    margin-top: -18px;
    padding-bottom: 4px;
}

.property-link-third {
    margin-top: -24px;
    margin-bottom: -25px;
    padding-bottom: 0px;
}

.sell-house-link {
    border-top: 4px solid var(--text);
    margin-top: 20px;
    padding-top: 20px;
}

.te-koop-text {
    color: var(--text);
    font-size: 18px;
    padding: 25px 0 0 0;
    margin: 0 0 -25px 0;
    text-align: left;
    font-weight: normal;
    border: none;
}

.emoji {
    margin-right: 8px;
    font-size: 28px;
}

.social {
    justify-content: center;
    font-size: 20px;
    border-bottom: 0px solid var(--text);
    margin-top: 20px;
}

.social a {
    color: var(--text);
    text-decoration: none;
    transition: all 0.2s ease;
    margin: 0 5px;
}

.social a:hover {
    color: #001cf5;
    font-weight: bold;
}

.content-block {
    width: 100%;
    max-width: 400px;
    margin: 30px 0;
    border: 2px solid white;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-end;
    background-color: rgba(255, 255, 255, 0.05);
}

.content-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.profile-image {
    width: 110%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
    margin-bottom: -20px;
}

.content-text {
    flex: 2;
    text-align: left;
}

.content-text h3 {
    color: var(--text);
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 700;
    font-family: 'Libre Baskerville', serif;
    line-height: 1.2;
}

.content-text p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.9;
}

.action-buttons {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    justify-content: center;
}

.action-button {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background-color: #1e293b;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s ease;
    flex: 1;
    justify-content: center;
    max-width: 150px;
}

.action-button:hover {
    background-color: #334155;
    transform: translateY(-1px);
}

.button-icon {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.call-button {
    background-color: #1e293b;
}

.call-button:hover {
    background-color: #334155;
}

.whatsapp-button {
    background-color: #1e293b;
}

.whatsapp-button:hover {
    background-color: #334155;
}

.partner-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin: 30px auto;
    padding: 20px 0;
    width: 100%;
    max-width: 400px;
}

.partner-logo {
    height: 35px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

footer {
    font-size: 12px;
    margin-top: auto;
    padding-bottom: 20px;
}

.wunderpix {
    color: orange;
    text-decoration: none;
}

.wunderpix:hover {
    color: white;
}

.wunderpix-logo {
    width: 48px;
    padding-left: 4px;
    padding-right: 4px;
    vertical-align: middle;
}
.pepernoot-logo {
    width: 148px;
    padding-left: 4px;
    padding-right: 4px;
    vertical-align: middle;
}

/* Mobile Optimization */
@media (max-width: 480px) {
    .container {
        padding: 30px 40px 20px;
    }

    .profile-pic {
        width: 220px;
        height: auto;
        border-radius: 00%;
        margin-bottom: 50px;
        margin-top: 30px;
    }

    .link {
        font-size: 20px;
        padding: 25px 0;
        border-bottom: 4px solid var(--text);
    }

    .property-link {
        font-size: 17px;
    }

    .te-koop-text {
        font-size: 16px;
        padding: 25px 0 0 0;
        margin: 0 0 -25px 0;
    }

    .emoji {
        font-size: 24px;
        margin-right: 8px;
    }

    .social {
        font-size: 18px;
        margin-top: 15px;
        border-bottom: 0px solid var(--text);
    }
    .social-icon {
    width: 28px;
    height: 28px;
}
    .social-icon:hover {
    background: orange;
    border-radius: 50%;
}
    .links {
        gap: 0px;
    }

    footer {
        font-size: 10px;
        margin-top: 30px;
    padding-bottom: 20px;
    }
    .wunderpix-logo {
        width: 48px;
    padding-left: 4px;
    padding-right: 4px;
    vertical-align: middle;
}
    .wunderpix:hover {
    color: white;
}
    .pepernoot-logo {
    width: 100px;
    padding-left: 4px;
    padding-right: 4px;
    vertical-align: middle;
}

    .content-block {
        flex-direction: row;
        text-align: left;
        padding: 15px;
        margin: 20px 0;
    }

    .profile-image {
        margin-bottom: -15px;
    }

    .content-text {
        text-align: left;
    }

    .content-text h3 {
        font-size: 18px;
    }

    .content-text p {
        font-size: 13px;
    }

    .action-buttons {
        flex-direction: column;
        gap: 8px;
        margin: 15px 0;
    }

    .action-button {
        font-size: 11px;
        padding: 10px 12px;
        max-width: none;
    }

    .button-icon {
        width: 14px;
        height: 14px;
    }

    .partner-logos {
        gap: 8px;
        margin: 20px auto;
        padding: 15px 0;
        max-width: 400px;
        justify-content: space-between;
    }

    .partner-logo {
        height: 28px;
    }
}