/* Variables & Reset */
:root {
    --primary-color: #003366; 
    --secondary-color: #C8102E; 
    --venmo-color: #008CFF;
    --cashapp-color: #00D632;
    --text-color: #333;
    --text-light: #555;
    --bg-color: #fff;
    --bg-light: #f9f9fa;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --transition: all 0.3s ease;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-main); color: var(--text-color); line-height: 1.6; background-color: var(--bg-color); }
.container { width: 90%; max-width: 800px; margin: auto; } /* Narrower for focus */
.text-center { text-align: center; }

/* Buttons */
.btn { display: inline-block; padding: 1rem 2rem; border-radius: 4px; font-weight: bold; text-decoration: none; cursor: pointer; transition: var(--transition); text-align: center; font-size: 1.1rem; }
.btn-venmo { background-color: var(--venmo-color); color: #fff; border: 2px solid var(--venmo-color); }
.btn-venmo:hover { background-color: transparent; color: var(--venmo-color); }
.btn-cashapp { background-color: var(--cashapp-color); color: #fff; border: 2px solid var(--cashapp-color); }
.btn-cashapp:hover { background-color: transparent; color: var(--cashapp-color); }
.button-group { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

/* Hero */
.hero { background: var(--primary-color); color: white; padding: 3rem 0; margin-bottom: 2rem; }
.hero h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.subtitle { font-size: 1.1rem; opacity: 0.9; font-weight: 300; }

/* Sections & Cards */
.section { padding: 2rem 0; }
.section-title { margin-bottom: 1.5rem; color: var(--primary-color); }
.bg-light { background-color: var(--bg-light); padding: 3rem; border-radius: 8px; margin-top: 2rem;}
.content-card { background: white; padding: 2.5rem; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); border-top: 4px solid var(--secondary-color); }
.content-card h2 { color: var(--primary-color); margin-bottom: 1rem; margin-top: 2rem;}
.content-card h2:first-child { margin-top: 0; }
.content-card p { margin-bottom: 1.2rem; font-size: 1.1rem; }

.link-highlight { display: inline-block; margin-top: 1rem; font-weight: bold; color: var(--secondary-color); text-decoration: none; }
.link-highlight:hover { color: var(--primary-color); text-decoration: underline;}

/* Image & Modal */
.feature-image { width: 100%; max-width: 600px; height: auto; border-radius: 4px; margin: 1.5rem auto; display: block; border: 1px solid #e0e0e0; cursor: pointer; transition: opacity 0.3s; }
.feature-image:hover { opacity: 0.8; }

.modal { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.85); align-items: center; justify-content: center; }
.modal-content { max-width: 90%; max-height: 90vh; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.5); object-fit: contain; }
.close-modal { position: absolute; top: 20px; right: 35px; color: #f1f1f1; font-size: 40px; font-weight: bold; cursor: pointer; transition: var(--transition); }
.close-modal:hover, .close-modal:focus { color: var(--secondary-color); }

/* Footer */
footer { text-align: center; padding: 2rem 0; margin-top: 3rem; border-top: 1px solid #eaeaea; }
.back-link { display: inline-block; margin-top: 1rem; color: var(--text-light); text-decoration: none; }
.back-link:hover { color: var(--primary-color); }