
    .storm-damage-panel {
        box-sizing: border-box;
        width: 100%;
        margin: 0 auto 24px;
        padding: 20px 25px;
        text-align: center;
        color: #ffffff;
        background: linear-gradient(135deg, #174b72, #0b304c);
        border-top: 5px solid #f2b233;
        border-bottom: 5px solid #f2b233;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
    }

  .storm-damage-panel h2 {
    margin: 0 0 10px;
    color: #f2b233 !important;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.3px;
}

    .storm-damage-panel p {
        margin: 7px 0;
        color: #ffffff;
        font-size: 17px;
        line-height: 1.5;
    }

    .storm-damage-panel .insurance-line {
        margin-top: 10px;
        font-weight: 700;
    }

    .storm-damage-panel .telephone-link {
        color: #ffffff;
        text-decoration: none;
        white-space: nowrap;
    }

    .storm-damage-panel .telephone-link:hover,
    .storm-damage-panel .telephone-link:focus {
        text-decoration: underline;
    }

    .storm-damage-panel .storm-damage-button {
        display: inline-block;
        margin-top: 12px;
        padding: 10px 22px;
        color: #17364d;
        background-color: #f2b233;
        border-radius: 5px;
        font-size: 16px;
        font-weight: 700;
        line-height: 1.3;
        text-decoration: none;
        transition: background-color 0.2s ease,
                    transform 0.2s ease;
    }

    .storm-damage-panel .storm-damage-button:hover,
    .storm-damage-panel .storm-damage-button:focus {
        color: #17364d;
        background-color: #ffd166;
        transform: translateY(-1px);
    }

    @media screen and (max-width: 600px) {
        .storm-damage-panel {
            padding: 17px 15px;
        }

        .storm-damage-panel h2 {
            font-size: 21px;
        }

        .storm-damage-panel p {
            font-size: 16px;
        }
    }

 
 