/* Shivaay Digital - Basic Design */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f7fb;
    color: #222;
    text-align: center;
}


/* Header */

header {
    background: #111827;
    color: white;
    padding: 50px 20px;
}

header h1 {
    margin: 0;
    font-size: 36px;
}

header p {
    font-size: 18px;
    margin-top: 12px;
}


/* Main Section */

main {
    padding: 60px 20px;
}

main h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

main p {
    font-size: 17px;
    line-height: 1.6;
}


/* Button */

button {
    margin-top: 20px;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    background: #2563eb;
    color: white;
    font-size: 16px;
    cursor: pointer;
}


/* Footer */

footer {
    padding: 20px;
    background: #111827;
    color: white;
}

/* Get Started Link Button */

.start-button {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    border-radius: 8px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.start-button:hover {
    background: #1d4ed8;
}

/* Contact Buttons */

.contact-buttons {
    margin-top: 25px;
}

.contact-button {
    display: inline-block;
    margin: 8px;
    padding: 12px 22px;
    border-radius: 8px;
    background: #111827;
    color: white;
    text-decoration: none;
    font-size: 16px;
}

/* Services Section */

#services {
    padding: 50px 20px;
    background: white;
}

#services h2 {
    font-size: 30px;
    margin-bottom: 30px;
}


/* Services Container */

.services {
    max-width: 900px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}


/* Service Card */

.service {
    padding: 25px;
    background: #f4f7fb;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service h3 {
    margin-top: 0;
    font-size: 20px;
}

.service p {
    line-height: 1.6;
    font-size: 15px;
}


/* Mobile */

@media (max-width: 600px) {

    .services {
        grid-template-columns: 1fr;
    }

}