* {
    margin: 0;
    padding: 0;
    font-family: "Times New Roman", serif;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

.backg {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 20px;
    background-color: #2c3e50; /* Fallback color */
    position: relative;
    overflow: hidden;
}

/* Background image container */
.backg::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40%;
    background: url('GTR.jpg') repeat right center;
    background-size: auto; /* Changed from cover to allow tiling */
    z-index: 0;
}

/* Gradient overlay */
.backg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, #2c3e50 60%, transparent 40%);
    z-index: 1;
}

.intro {
    width: 90%;
    max-width: 1280px;
    position: relative;
    z-index: 2;
    color: white;
}

.bottom-space {
    height: 100px;
}

.intro h1 {
    font-size: 65px;
    margin-top: 40px;
    color: #e74c3c;
}

.intro p_intro {
    font-size: 25px;
}

.intro h2 {
    font-size: 45px;
    color: #e74c3c;
}

.intro p_location,
.intro p_contacts,
.intro p_services {
    font-size: 25px;
}

.intro p_hours {
    font-size: 30px;
}

.intro p_location a {
    color: #fff;
    text-decoration: none;
}

.intro p_location a:hover {
    color: #e74c3c;
    text-decoration: underline;
}

/* Mobile Responsive Styles */
@media only screen and (max-width: 768px) {
    .backg {
        background: #2c3e50;
    }
    
    .backg::before {
        width: 100%;
        height: 40%;
        top: auto;
        bottom: 0;
        background-position: center;
        opacity: 0.5;
    }
    
    .backg::after {
        background: linear-gradient(to bottom, #2c3e50 70%, transparent 100%);
    }
    
    .intro {
        width: 95%;
    }
    
    .intro h1 {
        font-size: 40px;
        margin-top: 20px;
    }
    
    .intro p_intro,
    .intro p_location,
    .intro p_contacts,
    .intro p_services {
        font-size: 18px;
    }
    
    .intro h2 {
        font-size: 30px;
    }
    
    .intro p_hours {
        font-size: 20px;
    }
}

@media only screen and (max-width: 480px) {
    .intro h1 {
        font-size: 32px;
    }
    
    .intro h2 {
        font-size: 24px;
    }
    
    .intro p_intro,
    .intro p_location,
    .intro p_contacts,
    .intro p_services {
        font-size: 16px;
    }
    
    .intro p_hours {
        font-size: 18px;
    }
}