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

/* Base styles */
:root {
    font-size: 16px;
}

html, body {
    height: 100vh;
}

body {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.4;
    color: #000;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo */
.logo {
    margin-bottom: 80px;
    line-height: 0;
}

.logo img {
    width: 48px;
    height: 48px;
}

/* Content */
.content {
    max-width: 430px;
    text-align: center;
}

.content p {
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.4;
}

.content p:last-child {
    margin-bottom: 0;
}

/* Services */
.services {
    margin: 80px 0;
    text-align: center;
}

.services div {
    margin-bottom: 8px;
    font-size: 16px;
}

.services div:last-child {
    margin-bottom: 0;
}

/* Button */
.cta {
    text-align: center;
}

.button {
    width: 120px;
    height: 30px;
    border: 1px solid #000;
    border-radius: 3px;
    background: none;
    color: #000;
    font-size: 16px;
    font-family: 'Geist', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.button:hover {
    background: #000;
    color: #fff;
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        align-items: flex-start;
    }

    .container {
        padding: 48px 24px;
        min-height: 100vh;
        justify-content: flex-start;
    }

    .logo {
        margin-bottom: 48px;
    }

    .content {
        max-width: 100%;
    }

    .content p {
        margin-bottom: 24px;
        padding: 0 4px;
    }

    .services {
        margin: 48px 0;
    }

    .services div {
        margin-bottom: 12px;
        padding: 0 4px;
    }
} 