* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}




.ad-container1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    padding-left: 25px;
   
}

.ad-card1 {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #1b2835;
}

.ad-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.ad-image1 {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.ad-content1 {
    padding: 20px;
}

.ad-title1 {
    font-size: 18px;
    color: white;
    margin-bottom: 10px;
    text-align: center;
}

.ad-description1 {
    font-size: 14px;
    color: white;
    margin-bottom: 15px;
    line-height: 1.5;
    text-align: center;
}

.ad-action {
    text-align: center;
}

.ad-button {
    color: #ff7e5f;
    background: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

.ad-button:hover {
    background: white;
}