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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fafafa;
    font-size: 17px;
    font-weight: 400;
}

.container {
    max-width: 800px;
    margin-left: 60px;
    padding: 40px 40px 20px 40px;
}

/* Header styles */
header {
    margin-bottom: 20px;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0;
}

/* Section styles */
section {
    margin-bottom: 30px;
}

section h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #000;
    margin-bottom:15px;
    text-decoration: underline;
}

/* Content styles */
section p {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: #333;
    line-height: 1.6;
}

section p:first-of-type {
    font-weight: 400;
}

/* Links */
a {
    color: #1e3a8a;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Connect section */
.links {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.links a {
    color: #1e3a8a;
    text-decoration: none;
    font-size: 1.1rem;
}

.links a:hover {
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 1024px) {
    .container {
        margin-left: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        margin-left: 20px;
        padding: 40px 16px;
        max-width: calc(100% - 40px);
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    section h2 {
        font-size: 1.2rem;
    }
    
    section p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        margin-left: 16px;
        padding: 30px 12px;
        max-width: calc(100% - 32px);
    }
    
    header h1 {
        font-size: 1.8rem;
    }
    
    section {
        margin-bottom: 40px;
    }
    
    section h2 {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }
    
    section p {
        font-size: 0.95rem;
        margin-bottom: 14px;
    }
} 