/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1a1a1a; /* Dark background */
    color: #e0e0e0; /* Light text */
    line-height: 1.6;
}

/* Header */
.site-header {
    background-color: #111;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header .logo {
    height: 50px;
}

.site-header nav a {
    color: #95D600; /* Yellow-green accent */
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
}

.site-header nav a:hover {
    text-decoration: underline;
}

/* Hero Section with diamond pattern */
.hero {
    text-align: center;
    padding: 100px 20px;
    background-color: #2a2a2a;
/*    background-image: url("logo.svg");
    background-size: 40px 40px;
    background-repeat: repeat;
    background-position: center;
    background-attachment: fixed;*/
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #95D600;
    color: #111;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

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

/* Services Section */
.services {
    padding: 60px 20px;
    background-color: #2a2a2a;
    text-align: center;
}

.services h2 {
    margin-bottom: 40px;
    color: #95D600;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-cards .card {
    background-color: #333;
    padding: 20px;
    width: 300px;
    border-radius: 8px;
    text-align: center;
}

.service-cards .card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 5px;
}

.service-cards .card h3 {
    margin-bottom: 10px;
}

/* Pricing Section */
.pricing {
    padding: 60px 20px;
    background-color: #1a1a1a;
    text-align: center;
}

.pricing h2 {
    margin-bottom: 40px;
    color: #95D600;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.pricing-cards .card {
    background-color: #333;
    padding: 30px;
    width: 300px;
    border-radius: 8px;
}

.pricing-cards .card h3 {
    margin-bottom: 10px;
}

.pricing-cards .card p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #95D600;
}

.pricing-cards .card ul {
    list-style: none;
    padding-left: 0;
}

.pricing-cards .card ul li {
    margin-bottom: 10px;
}

/* FAQ Section */
.faq {
    background-color: #2a2a2a;
    padding: 60px 20px;
}

.faq h2 {
    margin-bottom: 30px;
    text-align: center;
    color: #95D600;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    margin-bottom: 10px;
}

/* Contact Section */
.contact {
    padding: 60px 20px;
    background-color: #1a1a1a;
    text-align: center;
}

.contact h2 {
    margin-bottom: 30px;
    color: #95D600;
}

.contact a {
    color: #95D600;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background-color: #111;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: #666;
}
.it-image {
    display: inline-block;
    width: 40px; /* Adjust to your image dimensions */
    height: 80px; /* Adjust to your image dimensions */
    background-image: url('logo-it.png');
    background-size: cover;
    background-repeat: no-repeat;
    text-indent: -9999px; /* This hides the original "IT" text */
    overflow: visible;
}