body {

    margin: 0;

    font-family: Arial, Helvetica, sans-serif;

    color: #333;

    line-height: 1.6;

    background-color: #f2f2f2;

}



/* Header */

header {

    background-color: white;

    padding: 25px 20px;

}


.header-logos {

    max-width: 900px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}



.logo {

    max-width: 320px;

    height: auto;

}



.guild-logo {

    max-width: 140px;

    height: auto;

}



/* Main heading */

.intro {

    background-color: white;

    text-align: center;

    padding: 25px 20px;

}



.intro h1 {

    max-width: 900px;

    margin: auto;

    color: #244C66;

    font-size: 1.9rem;

    font-weight: 600;

}





/* Main content */

main {

    max-width: 900px;

    margin: 30px auto;

    background-color: white;

    padding: 40px 35px;

}





h2 {

    color: #244C66;

    margin-top: 35px;

    font-size: 1.5rem;

}




ul {

    padding-left: 25px;

}



li {

    margin-bottom: 8px;

}




/* Services section */

.services {

    display: flex;

    align-items: center;

    gap: 40px;

}



.service-content {

    flex: 1;

}



.chimney-icon {

    width: 130px;

    height: auto;

}



.strapline {

    color: #244C66;

    font-weight: bold;

}




/* Contact */

.contact {

    text-align: center;

}




/* Links */

a {

    color: #C46B08;

    text-decoration: none;

}



a:hover {

    text-decoration: underline;

}




/* Footer */

footer {

    text-align: center;

    padding: 30px 20px;

    background-color: #e8e8e8;

}





/* Mobile layout */

@media(max-width:600px) {


    .header-logos {

        flex-direction: column;

        text-align: center;

    }


    .logo {

        max-width: 260px;

    }


    .guild-logo {

        max-width: 120px;

    }


    .intro h1 {

        font-size: 1.5rem;

    }


    main {

        margin: 20px 10px;

        padding: 25px 20px;

    }


    .services {

        flex-direction: column;

        text-align: center;

    }


    .chimney-icon {

        width: 90px;

    }


}