body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
	background-color:#F2F2F2;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
	text-align:center;
}

header {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5)), url('https://dc-limo.com/images-home/bg0.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 50px 20px 200px 20px;
}

.logo-home {
	text-align:center;
}

a {
	text-decoration:none;
}

p {
	margin:0;
}

img {
	max-width:100%;	
}

.hero {
	color:#c2a360;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
	opacity:0.8;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
	opacity:0.8;
}

.cta-button {
    background-color:#c2a360;
    color: lightyellow;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #a38a51;
}

.about, .services, .portfolio, .partner-icons, .text-squares, .center-image {
    margin: 30px 0;
	padding: 30px 10px 50px 10px;
	background-color:#FFF;
}

section h2 {
    text-align: center;
    margin-bottom: 40px;
	color:#c2a360;
}

.about-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.about-item {
    text-align: center;
    max-width: 300px;
}

.about-item img {
    width: 130px;
    height: 130px;
	margin-top:25px;
    border-radius: 50%;
    object-fit: cover;
	border:2px solid #c2a360;
}

.services-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
	gap:25px;
}

.service-item {
    text-align: center;
	max-width:250px;
	border-radius:10px;
	border:1px solid #c2a360;
	padding:30px 20px 30px 20px;
}

.service-item img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.portfolio-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
	gap:20px;
}

.portfolio-item img {
    width: 300px;
    display: block;
}


.icon-container {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px;
}

.icon {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.icon img {
	max-width: 100%;
	max-height: 100%;
}


.square-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.square {
	background-color: white;
	padding: 20px;
	border-radius: 8px;
	border:1px solid #c2a360;
}



.full-width-image {
	background-size: cover;
	background-position: center;
	height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	filter:brightness(50%);
	
}


.center-image {
	padding-top:50px;
}


.full-width-image1 {
	background-image: url('https://dc-limo.com/images-home/bg5.jpg');
}

.full-width-image2 {
	background-image: url('https://dc-limo.com/images-home/bg4.jpg');
}

.full-width-image3 {
	background-image: url('https://dc-limo.com/images-home/bg1.jpg');
}

.full-width-image h2 {
	font-size: 3em;
	color:#ff8c37;
	filter:brightness(160%);
}



footer {
	background-color: #333; /* Dark gray background */
	color: #c2a360; /* White text */
	padding:30px 10px 0 10px;
}

footer > section {
	display: flex;
	flex-wrap: wrap;
	justify-content:center;
	align-items:top;
	font-family: sans-serif;
	max-width:1300px;
	margin:0 auto;
	gap:10%;
}


.footer-logo img {
	max-width: 280px; 
	height: auto;
}

.footer-logo p {
	font-style: italic;
	margin-top: 5px;
}

.footer-links h3, .footer-contact h3 {
	margin-bottom: 10px;
	color:#CCC;
}

.footer-links ul {
	list-style: none;
	padding: 0;
}

.footer-links li {
	margin-bottom: 5px;
}

.footer-links a {
	text-decoration: none;
	color: #c2a360; /* White link color */
}

.footer-links a:hover {
	text-decoration: underline;
}

.footer-contact p {
	margin-bottom: 5px;
}

footer .copyright {
	text-align:center;
	padding:10px;
	border-top:1px solid #c2a360;
	max-width:90%;
	margin:30px auto 20px auto;
	font-size:80%;
}



/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5em;
    }

    .about-content, .services-grid, .portfolio-grid {
        grid-template-columns: 1fr;
    }
	
	footer {
		flex-direction: column;
		align-items: center;
	}
	
	.footer-logo, .footer-links, .footer-contact{
		width: 100%;
		text-align: center;
	}	
}