/* 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: #333;
    background-color: #fafafa;
    font-size: 16px;
}

/* Container and layout */
.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Typography */
h1 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
}

h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 20px;
    margin-top: 40px;
}

p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
    text-align: left;
}

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

.intro p {
    font-size: 1.2rem;
    color: #444;
    text-align: center;
}

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

li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #555;
}

li:before {
    content: "•";
    color: #3498db;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -2px;
}

/* Contact section */
.contact-section {
    text-align: center;
    margin-top: 40px;
}

.contact-section p {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    word-break: break-all;
}

.cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-1px);
}

.cta-button:active {
    transform: translateY(0);
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    p, li {
        font-size: 1rem;
    }
    
    .intro p {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 15px;
    }
    
    h1 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
    
    h2 {
        font-size: 1.2rem;
        margin-top: 30px;
    }
    
    p, li {
        font-size: 0.95rem;
    }
    
    .intro p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

/* Print styles */
@media print {
    body {
        background-color: white;
        color: black;
    }
    
    .cta-button {
        border: 1px solid #333;
        color: #333;
        background-color: transparent;
    }
    
    .cta-button:after {
        content: " (travis.keller@travisrkeller.com)";
    }
}
