/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #333;
    padding: 0px;
    text-align: center;
}

/* Header styles */
header {
    position: relative;
    margin-bottom: 20px;
}

.top-bar {
    height: 30px;
    background-image: linear-gradient(
        135deg, 
        #e00000 25%, 
        transparent 25%, 
        transparent 50%, 
        #e00000 50%, 
        #e00000 75%, 
        transparent 75%, 
        transparent
    );
    background-size: 60px 60px;
}

.logo-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.logo {
    max-width: 400px;
}

.website-link {
    font-size: 18px;
    color: #e00000;
    text-decoration: none;
    margin-top: 10px;
}

.website-link:hover {
    text-decoration: underline;
}

/* Services section styles */
.services h1 {
    font-size: 44px;
    font-weight: bold;
    margin: 20px 0;
    color: #000;
}

/* Content section styles */
.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.excavator-image {
    margin-bottom: 0px;
}

.excavator {
    max-width: 300px;
    height: auto;
}

/* Contact section */
.contact-section {
    font-weight: bold;
    margin-top: 20px;
}

.contact-section p {
    color: #e00000;
    font-size: 35px;
    margin-bottom: 0px;
}

.phone-number {
    font-size: 45px;
    color: #000;
    text-decoration: none;
}

.phone-number:hover {
    color: #e00000;
}

/* Responsive Design */
@media (min-width: 768px) {
    .logo-container {
        flex-direction: column;
        justify-content: center;
    }

    .services h1 {
        font-size: 64px;
        color: #000;
    }

    .excavator {
        max-width: 600px;
    }

    .contact-section {
        font-size: 36px;
    }
}
