/* Body Styles */
body {
    background-image: url('website-background-21.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Overlay Effect */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: -1; /* Ensure it stays behind the content */
}

/* Container Styles */
.container {
    max-width: 1400px; /* Increased max-width for a larger container */
    margin: auto;
    padding: 30px; /* Increased padding for more space inside the container */
}

/* Lead Tracking Container Styles */
.lead-tracking-container {
    background-color: #fff; /* White background for visibility */
    padding: 30px; /* Padding for internal spacing */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    margin: 20px 0; /* Space above and below the lead tracking section */
}

/* Header, Main, and Footer Styles */
header, main, footer {
    padding: 15px;
    background-color: #fff;
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Heading Styles */
h1 {
    text-align: center;
    color: #fff; /* Consider changing this if the background is dark */
    font-size: 32px;
    line-height: 1.3;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #2980B9;
    color: white;
}

/* Responsive Styles */
/* Tablet screens and smaller */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    header, main, footer, .lead-tracking-container {
        padding: 12px;
    }
    h1 {
        font-size: 26px;
    }
    p {
        font-size: 16px;
    }
}

/* Small phones and very small devices */
@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    header, main, footer, .lead-tracking-container {
        padding: 8px;
        margin: 6px 0;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    }
    h1 {
        font-size: 20px;
        line-height: 1.2;
    }
    p {
        font-size: 14px;
        line-height: 1.4;
    }
}
