/* About Us Page Styles */
.about-us-page {
    position: relative;
}

/* Hero Section */
.about-hero {
    padding: 60px 0;
    background: #fff;
}

.about-hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1283px;
    margin: 0 auto;
  
}

.about-hero-text h1 {
    font-size: 3em;
    font-weight: 700;
    color: #333;
    font-family: 'Ubuntu-Bold', sans-serif;
    margin: 0 0 25px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.125em;
    line-height: 1.7;
    color: #606060;
    font-family: 'Ubuntu-Light', sans-serif;
    margin: 0 0 20px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.about-hero-image {
    flex-shrink: 0;
    width: 400px;
}

.about-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1em;
    font-weight: 600;
    font-family: 'Ubuntu-Medium', sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: #FF333A;
    color: #fff;
}

.btn-primary:hover {
    background: #da282e;
    color: #fff;
  
    box-shadow: 0 4px 12px rgba(255, 51, 58, 0.3);
}

.btn-outline {
    background: transparent;
    color: #FF333A;
    border: 2px solid #FF333A;
}

.btn-outline:hover {
    background: #FF333A;
    color: #fff;
}

.btn-link {
    display: inline-block;
    color: #FF333A;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Ubuntu-Medium', sans-serif;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-link:hover {
    color: #da282e;
 
}

/* Mission Section */
.about-mission {
    padding: 60px 0;

}

.about-mission-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1283px;
    margin: 0 auto;
 
}

.mission-text h2,
.about-team h2,
.about-testing h2,
.about-principles h2,
.about-legal h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: #333;
    font-family: 'Ubuntu-Bold', sans-serif;
    margin: 0 0 25px;
    position: relative;
    padding-bottom: 15px;
}

.mission-text h2::after,
.about-team h2::after,
.about-testing h2::after,
.about-principles h2::after,
.about-legal h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: #FF333A;
    border-radius: 2px;
}

.mission-text p {
    font-size: 1.125em;
    line-height: 1.7;
    color: #606060;
    font-family: 'Ubuntu-Light', sans-serif;
    margin: 0;
    max-width: 700px;
}

.mission-badge {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #fff5f5;
    border-radius: 50%;
    color: #FF333A;
}

.mission-badge p {
    margin: 0;
    font-size: 1em;
    color: #333;
    font-family: 'Ubuntu-Medium', sans-serif;
    line-height: 1.5;
}

/* Team Section */
.about-team {
    padding: 60px 0;
    background: #fff;
}

.about-team .container {
    max-width: 1283px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-intro {
    font-size: 1.125em;
    line-height: 1.7;
    color: #606060;
    font-family: 'Ubuntu-Light', sans-serif;
    margin: 0 0 40px;
    max-width: 900px;
}

.team-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.team-card {
    padding: 35px;
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.team-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
 
    border-color: #FF333A;
}

.team-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.team-avatar-spy {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #999;
}

.team-info h3 {
    margin: 0 0 5px;
    font-size: 1.375em;
    font-weight: 700;
    color: #333;
    font-family: 'Ubuntu-Bold', sans-serif;
}

.team-role {
    margin: 0;
    font-size: 0.95em;
    color: #FF333A;
    font-weight: 600;
    font-family: 'Ubuntu-Medium', sans-serif;
}

.team-description {
    margin: 0 0 15px;
    font-size: 0.95em;
    line-height: 1.6;
    color: #606060;
    font-family: 'Ubuntu-Light', sans-serif;
}


.about-testing .container {
    max-width: 1283px;
    margin: 0 auto;
    padding: 0 20px;
}

.testing-content {
    display: flex;
    gap: 50px;
  
}

.testing-description {
    flex: 1;
}

.testing-description p {
    font-size: 1.125em;
    line-height: 1.7;
    color: #606060;
    font-family: 'Ubuntu-Light', sans-serif;
    margin: 0;
}

.testing-steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.testing-step {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.step-number {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #FF333A;
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.125em;
    font-family: 'Ubuntu-Bold', sans-serif;
}

.testing-step p {
    margin: 0;
    font-size: 1em;
    color: #333;
    font-family: 'Ubuntu-Medium', sans-serif;
}

.testing-methodology {
    margin-top: 30px;
}

.methodology-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: #fff;
    border: 2px solid #FF333A;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.methodology-link:hover {
    background: #fff5f5;
    box-shadow: 0 4px 16px rgba(255, 51, 58, 0.15);
}

.methodology-link svg {
    flex-shrink: 0;
    color: #FF333A;
}

.methodology-link strong {
    display: block;
    font-size: 1.125em;
    color: #333;
    font-family: 'Ubuntu-Bold', sans-serif;
    margin-bottom: 5px;
}

.methodology-link span {
    font-size: 0.95em;
    color: #606060;
    font-family: 'Ubuntu-Light', sans-serif;
}

/* Principles Section */
.about-principles {
    padding: 60px 0;
    background: #fff;
}

.about-principles .container {
    max-width: 1283px;
    margin: 0 auto;
    padding: 0 20px;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.principle-card {
    padding: 35px;
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.principle-card:hover {
    background: #fff5f5;

    box-shadow: 0 8px 24px rgba(255, 51, 58, 0.12);
}

.principle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #fff;
    border-radius: 50%;
    color: #FF333A;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.principle-card h3 {
    margin: 0 0 15px;
    font-size: 1.25em;
    font-weight: 700;
    color: #333;
    font-family: 'Ubuntu-Bold', sans-serif;
}

.principle-card p {
    margin: 0;
    font-size: 0.95em;
    line-height: 1.6;
    color: #606060;
    font-family: 'Ubuntu-Light', sans-serif;
}


/* Questions Section */
.about-questions {

    background: #fff;
}

.about-questions .container {
    max-width: 1283px;
    margin: 0 auto;
    padding: 0 20px;
}

.questions-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 50px;
    background: #fff5f5;
    border-radius: 12px;
    border: 1px solid #ffd9db;
}

.questions-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.questions-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 12px;
    color: #FF333A;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.questions-text h3 {
    margin: 0 0 10px;
    font-size: 1.5em;
    font-weight: 700;
    color: #333;
    font-family: 'Ubuntu-Bold', sans-serif;
}

.questions-text p {
    margin: 0;
    font-size: 1em;
    line-height: 1.6;
    color: #606060;
    font-family: 'Ubuntu-Light', sans-serif;
    max-width: 600px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-hero-text h1 {
        font-size: 2.5em;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-hero-image {
        width: 100%;
        max-width: 400px;
    }
    
    .about-mission-content {
        flex-direction: column;
        text-align: center;
    }
    
    .mission-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .mission-badge {
        width: 100%;
        justify-content: center;
    }
    
    .testing-content {
        flex-direction: column;
    }
    
    .team-cards {
        grid-template-columns: 1fr;
    }
    
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-text h1 {
        font-size: 2em;
    }
    
    .hero-description {
        font-size: 1em;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
    
    .mission-text h2,
    .about-team h2,
    .about-testing h2,
    .about-principles h2,
    .about-legal h2 {
        font-size: 2em;
    }
    
    .mission-badge {
        flex-direction: column;
        text-align: center;
    }
    
    .testing-steps {
        gap: 10px;
    }
    
    .testing-step {
        padding: 15px 20px;
    }
    
    .questions-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .questions-content {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .about-hero {
        padding: 30px 0;
    }
    
    .about-hero-text h1 {
        font-size: 1.75em;
    }
    
    .about-mission,
    .about-team,
    .about-testing,
    .about-principles,
    .about-legal {
        padding: 30px 0;
    }
    
    .mission-text h2,
    .about-team h2,
    .about-testing h2,
    .about-principles h2,
    .about-legal h2 {
        font-size: 1.75em;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .principle-card {
        padding: 25px 20px;
    }
    
    .legal-content {
        padding: 25px;
    }
    
    .team-card {
        padding: 25px;
    }
}


.sidebar {
    display: none;
}


#how-we-test::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #FF333A, #373D46);
    border-radius: 3px;
    display: none;
}



.about-testing {
    padding: 60px 43px;

}

.about-mission .container {
    max-width: 1283px;
    margin: 0 auto;
    padding: 0 20px;
}


.about-hero .container {
    max-width: 1283px;
    margin: 0 auto;
    padding: 0 20px;
}






.knopka-2 {
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #ff333a;
    border-radius: 5px;
    text-decoration: none;
    border: 1px solid #ff333a;
}

.knopka-2:hover,
.knopka-2:focus,
.knopka-2:active {
    text-decoration: none !important;
    color: #fff !important;
    background: #da282e  !important;
    border: 1px solid #da282e  !important;
}


@media (max-width: 576px) {
    #how-we-test {
  
        padding: 30px 25px;
      
    }
}





/* Responsible Gambling Section */
.about-responsible {
    padding: 60px 0;

}

.about-responsible .container {
    max-width: 1283px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-responsible h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: #333;
    font-family: 'Ubuntu-Bold', sans-serif;
    margin: 0 0 25px;
    position: relative;
    padding-bottom: 15px;
}

.about-responsible h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: #FF333A;
    border-radius: 2px;
}

.responsible-content {
    padding: 40px;
    background: #f5f3ef;
    border-radius: 12px;
}

.responsible-intro {
    font-size: 1.125em;
    line-height: 1.7;
    color: #010101;
    font-family: 'Ubuntu-Light', sans-serif;
    margin: 0 0 35px;
    max-width: 900px;
}

.responsible-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.responsible-column h3 {
    font-size: 1.125em;
    font-weight: 700;
    color: #333;
    font-family: 'Ubuntu-Bold', sans-serif;
    margin: 0 0 20px;
    text-transform: uppercase;

}

.warning-list,
.action-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.warning-list li,
.action-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
    font-size: 1em;
    line-height: 1.6;
    color: #606060;
    font-family: 'Ubuntu-Light', sans-serif;
}

.warning-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    background: #FF333A;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z'/%3E%3Cline x1='12' y1='9' x2='12' y2='13'/%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z'/%3E%3Cline x1='12' y1='9' x2='12' y2='13'/%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
}

.action-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    background: #4CAF50;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
}

.self-control-tools {
    margin-bottom: 35px;
}

.self-control-tools h3 {
    font-size: 1.125em;
    font-weight: 700;
    color: #333;
    font-family: 'Ubuntu-Bold', sans-serif;
    margin: 0 0 25px;
    text-transform: uppercase;

}

.tools-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.tool-card {
    padding: 30px 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.tool-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

.tool-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #fff5f5;
    border-radius: 50%;
    color: #FF333A;
    margin-bottom: 18px;
}

.tool-card h4 {
    margin: 0 0 12px;
    font-size: 1.125em;
    font-weight: 700;
    color: #333;
    font-family: 'Ubuntu-Bold', sans-serif;
}

.tool-card p {
    margin: 0;
    font-size: 0.95em;
    line-height: 1.6;
    color: #606060;
    font-family: 'Ubuntu-Light', sans-serif;
}

.responsible-btn {
    display: inline-block;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .responsible-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .tools-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-responsible h2 {
        font-size: 2em;
    }
    .about-responsible h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .responsible-content {
        padding: 25px;
    }
    .responsible-intro {
        font-size: 1em;
    }
}

@media (max-width: 576px) {
    .about-responsible {
        padding: 30px 0;
    }
    .about-responsible h2 {
        font-size: 1.75em;
    }
    .responsible-content {
        padding: 20px;
    }
}