

/* Start:/contacts/style.css?17761055044025*/
.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.contact-header {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h1 {
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 2.2em;
}

.contact-comms {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    width: 50%;
    text-align: center;
    margin: 0 auto;
}

.comms-block {
    flex: 1;
    min-width: 250px;
    text-align: left;
}

.comms-block h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2em;
    border-bottom: 2px solid #ff9900;
    padding-bottom: 5px;
	margin-top: 0px;
}

.comms-block a {
    color: #ff9900;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.comms-block a:hover {
    color: #e68a00;
    text-decoration: underline;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: #3B76A3;
	border-radius: 20px;
	color: #fff;
	text-decoration: none;
}

a.social-btn:focus, a.social-btn:hover {
	color: #fff;
}

.tabs-container {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.tabs-header {
    display: flex;
    flex-wrap: wrap;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 0 20px;
}

.tab-btn {
    padding: 15px 25px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1em;
    font-weight: 500;
    color: #6c757d;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    color: #2c3e50;
    background: rgba(255, 153, 0, 0.1);
}

.tab-btn.active {
    color: #ff9900;
    background: #fff;
    border-bottom-color: #ff9900;
}

.tab-content {
    display: none;
    padding: 0;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.city-card {
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

@media (min-width: 768px) {
    .city-card {
        flex-direction: row;
    }
}

.city-info {
    padding: 40px;
    flex: 1;
    min-width: 300px;
}

.city-map {
    flex: 1;
    min-height: 400px;
}

.city-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.city-title {
    color: #2c3e50;
    font-size: 1.5em;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff9900;
}

.address-block {
    margin-bottom: 30px;
}

.address-block h3 {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 10px;
    font-weight: 600;
}

.address-block p {
    margin-bottom: 8px;
    font-size: 0.95em;
    line-height: 1.5;
}

.contact-details p {
    margin-bottom: 5px;
    font-size: 0.95em;
}

.highlight {
    color: #2c3e50;
    font-weight: bold;
}

@media (max-width: 768px) {
    .contact-comms {
        flex-direction: column;
        align-items: center;
    }
    
    .comms-block {
        text-align: center;
    }
    
    .city-map , .city-map iframe {
        min-height: 300px;
    }
    
    .city-info {
        padding: 25px;
    }
    
    .tabs-header {
        padding: 0 10px;
    }
    
    .tab-btn {
        padding: 12px 15px;
        font-size: 0.9em;
        flex: 1 1 50%;
    }
}

@media (max-width: 480px) {
    .tab-btn {
        flex: 1 1 100%;
    }
    
    .contact-header {
        padding: 25px 20px;
    }
    
    .contact-header h1 {
        font-size: 1.8em;
    }
}
/* End */
/* /contacts/style.css?17761055044025 */
