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

body {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', monospace;
    font-size: 14px;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 60px 0 40px;
}

.company-name {
    margin-bottom: 48px;
}

.company-name h1 {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.date {
    font-size: 14px;
    color: #6b7280;
    font-weight: 400;
}

/* Content */
.content {
    font-size: 14px;
    line-height: 1.7;
    color: #374151;
}

.intro {
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 32px;
    font-weight: 500;
}

.content p {
    margin-bottom: 24px;
    color: #374151;
}

.content strong {
    color: #1a1a1a;
    font-weight: 600;
}

.content h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 24px;
    margin-top: 48px;
    letter-spacing: -0.02em;
}

.content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    margin-top: 40px;
    letter-spacing: -0.01em;
}

.content ul {
    margin: 24px 0;
    padding-left: 0;
    list-style: none;
}

.content li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    color: #374151;
}

.content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #9ca3af;
    font-weight: bold;
}

.email {
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 500;
}

.divider {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 48px 0;
}

/* CTA Section */
.cta-section {
    margin: 32px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap;
    line-height: 1.4;
}

.btn-primary {
    background: #1a1a1a;
    color: white;
    border: 1px solid #1a1a1a;
}

.btn-primary:hover {
    background: #2d2d2d;
    border-color: #2d2d2d;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Typeform Embed */
.typeform-container {
    margin: 32px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    width: 100%;
    position: relative;
}

#typeformEmbed {
    width: 100%;
    height: 500px;
    position: relative;
}

#typeformEmbed iframe {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
}

.thank-you-message {
    text-align: center;
    padding: 48px 24px;
    background: #f8fafc;
    border-radius: 12px;
}

.thank-you-message h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.thank-you-message p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
}

.footer p {
    font-size: 14px;
    color: #6b7280;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .main-content {
        padding: 40px 0 32px;
    }
    
    .company-name {
        margin-bottom: 32px;
    }
    
    .company-name h1 {
        font-size: 22px;
        margin-bottom: 6px;
    }
    
    .date {
        font-size: 12px;
    }
    
    .intro {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .content {
        font-size: 13px;
    }
    
    .content h2 {
        font-size: 20px;
        margin-top: 32px;
        margin-bottom: 20px;
    }
    
    .content h3 {
        font-size: 16px;
        margin-top: 28px;
        margin-bottom: 16px;
    }
    
    .content p {
        margin-bottom: 20px;
    }
    
    .content ul {
        margin: 20px 0;
    }
    
    .content li {
        margin-bottom: 10px;
        padding-left: 18px;
    }
    
    .divider {
        margin: 32px 0;
    }
    
    .cta-section {
        margin: 24px 0;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .typeform-container {
        margin: 24px 0;
    }
    
    .thank-you-message {
        padding: 32px 16px;
    }
    
    .thank-you-message h3 {
        font-size: 18px;
    }
    
    .footer {
        padding: 32px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .main-content {
        padding: 32px 0 24px;
    }
    
    .company-name h1 {
        font-size: 18px;
    }
    
    .intro {
        font-size: 13px;
    }
    
    .content {
        font-size: 12px;
    }
    
    .content h2 {
        font-size: 18px;
    }
    
    .content h3 {
        font-size: 14px;
    }
}

 
 