/* 
 Theme Name:   cpa-child
 Theme URI:    
 Description:  
 Author:       
 Author URI:   
 Template:     cpa-accountant
 Version:      1.0

 /* == Add your own styles below this line ==
--------------------------------------------*/
:root {
    --color1: #327068;
    --color2: #26bfa6;
    --color3: #57d9ad;
}

.home #inner-pages-header {
    display: block;
}

#inner-pages-header h1 {
    font-size: 2.5rem;
    color: #ffffff;
}

#inner-pages-header .innheader-border {
    border-color: #ffffff;
}

#inner-pages-header .header-overlay {
    background: #26BFA6;
    background: linear-gradient(50deg, rgba(38, 191, 166, 1) 10%, rgba(50, 112, 104, 1) 0%, rgba(47, 131, 119, 1) 25%, rgba(55, 200, 168, 1) 20%, rgba(50, 112, 104, 1) 75%, rgba(87, 217, 173, 1) 100%);
}

@media (max-width: 768px) {
    #inner-pages-header h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    #inner-pages-header h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }
}

section {
    padding: 30px 0;
}

article.inner-service:before {
    background: linear-gradient(90deg, rgba(50, 112, 104, 1) 0%, rgba(38, 191, 166, 1) 47%, rgba(87, 217, 173, 1) 100%);
}

#colophon {
    background: var(--color1);
}

button,
input[type="submit"],
.back-to-top:hover::after {
    background: var(--color1);
}

.article_content h2 a {
    text-decoration: none;
    background: linear-gradient(90deg, #327068, #26bfa6, #57d9ad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

section h2 {
    text-align: center;
    font-style: italic;
}

.back-to-top-text i {
    font-size: 24px;
}


.site-info p {
    text-align: center;
}

.box {
    background: var(--color1);
    border: 2px solid var(--color2);
    border-radius: 16px;
    padding: 15px;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.box h3 {
    color: var(--color3);
    margin-bottom: 12px;
    font-weight: 600;
}

.box p {
    color: #e8fef8;
}

.box:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}