* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.7;
    background-color: #fff;
}

p#breadcrumbs{
    text-align: left;
    width: calc(100% - 40px);
    max-width: max(90vw, 1400px);      
    margin: -40px auto 0;
    color: #fff;
}

#inner-page-wrapper > .container { 
    width: 100%;
    padding: 0;
}

.ip-ad {
    overflow: hidden;
}

/* About Section */
.about {    
    width: calc(100% - 40px);
    max-width: max(90vw, 1400px);        
    border: 2px #d8d8d8 solid;
    border-radius: 0 0 0 80px;
    border-top: 0;
    border-right: 0;        
    margin: 18px auto 100px;
    padding: 80px 60px 0;
}

.about-top {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.about-intro {
    flex: 1.2;
}

.about-intro h1 {
    font-family: 'Prata', serif;
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.1;
    margin-bottom: 15px;
    color: #000;
}

.about-intro .subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #666;
    margin-bottom: 40px;
}

.about-intro p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.about-sidebar {
    flex: 0.8;
}

.image-wrapper {
    margin-bottom: 20px;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0 0 80px 0;
}

.contact-info {
    font-size: 0.85rem;
    color: #333;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-bottom: 15px;
}

.contact-grid > div {
    flex: 1 1 40%;
}

.contact-grid .title {
    font-weight: 700;
}

.contact-grid a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-grid a:hover {
    color: var(--aios-agents-hover-color, #000);
}

.socials {
    display: flex;
    gap: 15px;
}

.socials a {
    text-decoration: none;
    color: #000;
    font-size: 1.25rem;
    transition: opacity 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.socials a .hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.socials a:hover {
    opacity: 0.6;
}

.contact-grid .title {
    font-weight: 700;
}

.socials {
    display: flex;
    gap: 15px;
}

.socials a {
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    transition: opacity 0.2s;
}

.socials a:hover {
    opacity: 0.6;
}

/* Testimonials Section */
.testimonials {
    padding-top: 40px;
    margin: 0 0 85px;
}

.testimonials-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.testimonials-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonials-header {
    margin-bottom: 10px;
}

.testimonials-header h2 {
    font-family: 'Prata', serif;
    font-size: 3.5rem;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 15px;
    color: #000;
}

.testimonials-header .subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #666;
}

.testimonial-card {
    background-color: #000;
    color: #fff;
    padding: 40px;
    border-radius: 0 0 60px 0;
}

.stars {
    color: #fff;
    font-size: 2rem;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-card .author {
    font-weight: 700;
    font-size: 0.9rem;
}

/* Responsive */
@media(max-width: 991px) {
    p#breadcrumbs {
        margin-top: 20px;
        color: #000;
    }

    .about {
        width: 100%;
        padding: 20px;
    }

    .about-sidebar {
        width: 100%;
    }

    .about-top {
        flex-direction: column;
    }
    
    .about-intro h1,
    .testimonials-header h2 {
        font-size: 2.5rem;
    }
    
    .testimonials-grid {
        flex-direction: column-reverse;
    }    
}
