body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #d9d9d9;
    color: #444;
    line-height: 1.6;
    text-align: left;
}

header {
    background-color: #008080;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    position: relative;
}

header h1 {
    font-size: 2.8em;
    margin: 0;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: none;
}

.intro-text {
    background-color: #d9d9d9;
    padding: 67px 20px 15px 20px;
    text-align: center;
}

.intro-text p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #444;
}

.intro-text .cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #008080;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.intro-text .cta-button:hover {
    background-color: #006666;
}

.reasons {
    background-color: #d9d9d9;
    padding: 45px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.reasons h2 {
    font-size: 2em;
    color: #008080;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reason-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    justify-items: center;
}

.reason {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.reason:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.reason img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.reason h3 {
    font-size: 1.5em;
    color: #444;
    margin-bottom: 15px;
    text-align: center;
}

.reason p {
    margin: 0 0 20px 0;
    font-size: 1em;
    text-align: center;
    color: #666;
}

.reason .cta-button {
    margin-top: auto;
    padding: 10px 20px;
    background-color: #008080;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.reason .cta-button:hover {
    background-color: #006666;
}

footer {
    background-color: #004d4d;
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}

footer p {
    margin: 0;
    font-size: 1em;
}

#hidden-link {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
    opacity: 0;
    cursor: pointer;
}

#created-by {
    display: none;
}

.visible {
    display: block;
}

@media (max-width: 768px) {
    .reason-grid {
        grid-template-columns: 1fr;
    }
    .reason img {
        margin-bottom: 20px;
    }
}
