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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

.content {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.main-section {
    display: flex;
    min-height: 200px;
}

/* Full-height rectangular gold bar */
.accent-bar {
    width: 12px;
    background-color: #FFB300;
    flex-shrink: 0;
}

.text-content {
    padding: 60px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Typography */
h1 {
    font-size: 2.2rem;
    color: #4682B4;
    font-weight: 700;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .text-content {
        padding: 40px 30px;
    }

    h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .accent-bar {
        width: 8px;
    }

    .text-content {
        padding: 30px 20px;
    }

    h1 {
        font-size: 1.5rem;
    }
}
