/* General Styling */
body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    color: #ffffff;
    background: linear-gradient(to bottom, #000000, #1A1A2E);
}

.hero {
    position: relative;
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
}

.sample-sites {
    text-align: center;
    padding: 40px 20px;
    background-color: #1a1a1a;
    color: #fff;
}

.sample-sites h2 {
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 700;
}

.sample-sites .section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.sample-sites .card {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    color: #333;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card {
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 20px;
    color: #E94560;
    margin-bottom: 10px;
}

.card p {
    font-size: 16px;
    color: #333;
}

.cta-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #1A1A2E;
}

.cta-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.card .cta-button {
    display: inline-block;
    background-color: #E94560;
    color: #FFFFFF;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    margin-top: auto; 
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: auto; 
    max-width: 100%; 
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis; 
}

.card .cta-button:hover {
    background-color: #D83A56; 
    transform: scale(1.25); 
}
