/* Global custom CSS for webserv domains */

/* Fixed CTO signature in bottom right */
#cto-signature {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 9999;
    opacity: 0.8;
}

#cto-signature img {
    width: 150px;
    height: auto;
}

/* Basic body styling */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f7f7f7;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: #222;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Links */
a {
    color: #1e90ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    color: #888;
    font-size: 0.9em;
}

/* Hero section for landing pages */
.hero {
    background: linear-gradient(135deg, #0099ff, #66ccff);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff6600;
    color: #fff;
    border-radius: 5px;
    font-weight: bold;
}

.cta-button:hover {
    background-color: #e55700;
}

/* Additional site-wide styles may be appended here */

