
        h1 {
            color: #092a49;
            font-size: 2.8em;
            margin-bottom: 15px;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .subtitle {
            color: #6C757D;
            font-size: 1.4em;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .header-description {
            color: #6C757D;
            font-size: 1.05em;
            margin-top: 20px;
            line-height: 1.8;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .content-section {
            background: #FFFFFF;
            padding: 60px 50px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            margin-bottom: 0;
        }

        h2 {
            color: #092a49;
            font-size: 2.2em;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid #DEE2E6;
            font-weight: 700;
        }

        h3 {
            color: #0b3459;
            font-size: 1.6em;
            margin-top: 40px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        p {
            color: #495057;
            font-size: 1.05em;
            margin-bottom: 18px;
            line-height: 1.8;
            text-align: left;
        }

        .highlight-box {
            background: #F0F8FF;
            padding: 30px;
            border-radius: 4px;
            border-left: 4px solid #12365d;
            margin: 30px 0;
        }

        .galardonados-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .galardonado-card {
            background: #FFFFFF;
            padding: 30px;
            border-radius: 4px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border-left: 4px solid #092a49;
        }

        .galardonado-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 15px rgba(0,123,255,0.15);
        }

        .galardonado-nombre {
            color: #212529;
            font-size: 1.15em;
            font-weight: 600;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .galardonado-anio {
            color: #007BFF;
            font-size: 1.05em;
            font-weight: 600;
        }


        .icon {
            font-size: 3em;
            margin-bottom: 20px;
            text-align: center;
            color: #092a49;
        }

  

        @media (max-width: 768px) {
            h1 {
                font-size: 2em;
            }

            .mision-vision {
                grid-template-columns: 1fr;
            }

            .content-section {
                padding: 40px 25px;
            }

            header {
                padding: 40px 25px;
            }
        }

        .premio-mujer {
            background: #FFF9E6;
            padding: 40px;
            border-radius: 4px;
            margin-top: 40px;
            border-left: 4px solid #FFC107;
        }

        .premio-mujer h3 {
            color: #F57C00;
            margin-top: 0;
        }

        .btn-contact {
            display: inline-block;
            background: #092a49;
            color: white;
            padding: 15px 40px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05em;
            margin-top: 30px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-contact:hover {
            background: #092a49;
            box-shadow: 0 4px 12px rgba(0,123,255,0.3);
        }
   