 <style>

        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
        }
        
        header {
            background-color: #B22B02;
            color: white;
            padding: 30px 0;
            text-align: center;
            margin-bottom: 30px;
            border-radius: 0 0 10px 10px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        
        h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
          color:white;
        }
        
        h2 {
            color: #B22B02;
            margin: 25px 0 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #B22B02;
        }
        
        h3 {
            color: #B22B02;
            margin: 20px 0 10px;
        }
        
        p {
            margin-bottom: 15px;
        }
        
        .content-section {
            background-color: white;
            padding: 25px;
            margin-bottom: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        
        .highlight-box {
            background-color: #FFF5F2;
            border-left: 4px solid #B22B02;
            padding: 15px 20px;
            margin: 20px 0;
        }
        
        .symptoms-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 15px;
            margin: 20px 0;
        }
        
        .symptom-item {
            background-color: #FFF5F2;
            padding: 15px;
            border-radius: 5px;
            border-left: 3px solid #B22B02;
        }
        
        .goals-list {
            list-style-type: none;
            margin: 20px 0;
        }
        
        .goals-list li {
            background-color: #FFF5F2;
            padding: 15px;
            margin-bottom: 10px;
            border-radius: 5px;
            border-left: 3px solid #B22B02;
            counter-increment: goal-counter;
            position: relative;
            padding-left: 60px;
        }
        
        .goals-list li:before {
            content: counter(goal-counter);
            background-color: #B22B02;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            font-weight: bold;
        }
        
        .riley-story {
            background-color: #FFF5F2;
            padding: 25px;
            border-radius: 8px;
            margin: 30px 0;
            border: 1px solid #FFD1C4;
        }
        
        .awareness-callout {
            text-align: center;
            background-color: #B22B02;
            color: white;
            padding: 30px;
            border-radius: 8px;
            margin: 30px 0;
        }
        
        .awareness-callout h2 {
            color: white;
            border-bottom: none;
        }
        
        @media (max-width: 768px) {
            .symptoms-list {
                grid-template-columns: 1fr;
            }
            
            h1 {
                font-size: 2rem;
            }
        }
    </style>