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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

h2 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #7a7a7a;
    margin-bottom: 48px;
    font-weight: 600;
}

h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.2s;
}

.btn-primary {
    background: #1a1a1a;
    color: #ffffff;
}

.btn-primary:hover {
    background: #333333;
}

.btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #d0d0d0;
}

.btn-secondary:hover {
    border-color: #1a1a1a;
}

.cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Header */
header {
    padding: 32px 0;
    border-bottom: 1px solid #e5e5e5;
}

.logo {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
}

/* Sections */
section {
    padding: 80px 0;
    border-top: 1px solid #e5e5e5;
}

/* Lists */
ul {
    list-style: none;
}

li {
    color: #4a4a4a;
    padding: 6px 0;
    font-size: 15px;
}

li:before {
    content: "·";
    margin-right: 12px;
    color: #1a1a1a;
    font-weight: bold;
}

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

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }
    
    section {
        padding: 60px 0;
    }
}
