.archive-blog-main {
background: #ffffff;
}
.archive-blog-main .container {
max-width: 1400px;
margin: 0 auto;
padding: 0 20px;
} .blog-archive-hero {
background: linear-gradient(135deg, #2c5282 0%, #1a3a5c 100%);
padding: 60px 0 40px 0;
position: relative;
overflow: hidden;
}
.blog-archive-hero::before {
content: '';
position: absolute;
top: -50%;
right: -10%;
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
border-radius: 50%;
animation: float 20s infinite ease-in-out;
}
.blog-archive-hero::after {
content: '';
position: absolute;
bottom: -30%;
left: -5%;
width: 500px;
height: 500px;
background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
border-radius: 50%;
animation: float 25s infinite ease-in-out reverse;
}
@keyframes float {
0%, 100% {
transform: translateY(0) rotate(0deg);
}
50% {
transform: translateY(-30px) rotate(10deg);
}
}
.blog-archive-hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
pointer-events: none;
}
.blog-archive-hero .container {
position: relative;
z-index: 1;
text-align: center;
}
.archive-title {
font-size: 2.5rem;
font-weight: 700;
color: #ffffff;
margin: 0 0 12px 0;
line-height: 1.2;
text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.archive-subtitle {
font-size: 1.125rem;
font-weight: 400;
color: rgba(255, 255, 255, 0.95);
max-width: 700px;
margin: 0 auto;
line-height: 1.6;
}
.archive-description {
font-size: 1.125rem;
color: rgba(255, 255, 255, 0.9);
max-width: 700px;
margin: 0 auto;
line-height: 1.6;
} .blog-posts-section {
padding: 60px 0;
background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f0f8f0 100%);
}
.blog-posts-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 30px;
margin-bottom: 50px;
} .blog-post-card {
background: #ffffff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
transition: all 0.4s ease;
position: relative;
}
.blog-post-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 5px;
background: linear-gradient(90deg, #7cb342 0%, #2c5282 100%);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.4s ease;
}
.blog-post-card:hover::before {
transform: scaleX(1);
}
.blog-post-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 30px rgba(44, 82, 130, 0.2);
}
.blog-post-card-link {
text-decoration: none;
color: inherit;
display: block;
}
.blog-post-card-image {
width: 100%;
height: 240px;
overflow: hidden;
position: relative;
background: #f5f5f5;
}
.blog-post-card-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s ease;
}
.blog-post-card:hover .blog-post-card-image img {
transform: scale(1.1);
}
.blog-post-card-placeholder {
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}
.placeholder-content {
color: #bbb;
} .blog-post-card-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(44, 82, 130, 0.95) 0%, rgba(26, 58, 92, 0.95) 100%);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.4s ease;
}
.blog-post-card:hover .blog-post-card-overlay {
opacity: 1;
}
.read-more {
font-size: 1.25rem;
font-weight: 700;
color: #ffffff;
text-transform: uppercase;
letter-spacing: 1px;
transform: translateY(10px);
transition: transform 0.4s ease;
}
.blog-post-card:hover .read-more {
transform: translateY(0);
} .blog-post-card-content {
padding: 24px;
}
.blog-post-card-meta {
display: flex;
align-items: center;
gap: 10px;
font-size: 0.875rem;
color: #7cb342;
margin-bottom: 16px;
font-weight: 600;
}
.meta-separator {
opacity: 0.5;
}
.post-categories a {
color: #2c5282;
text-decoration: none;
transition: color 0.3s ease;
}
.post-categories a:hover {
color: #7cb342;
}
.blog-post-card-title {
font-size: 1.25rem;
font-weight: 700;
color: #333;
margin: 0 0 16px 0;
line-height: 1.4;
transition: color 0.3s ease;
}
.blog-post-card:hover .blog-post-card-title {
color: #2c5282;
}
.blog-post-card-excerpt {
font-size: 0.9375rem;
line-height: 1.7;
color: #666;
margin-bottom: 20px;
}
.blog-post-card-footer {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 16px;
border-top: 1px solid #e8e8e8;
}
.post-author {
display: flex;
align-items: center;
gap: 8px;
font-size: 0.875rem;
color: #666;
}
.post-author svg {
color: #7cb342;
}
.read-more-arrow {
font-weight: 600;
color: #7cb342;
transition: all 0.3s ease;
}
.blog-post-card:hover .read-more-arrow {
color: #2c5282;
transform: translateX(5px);
} .pagination {
display: flex;
justify-content: center;
gap: 12px;
margin-top: 60px;
}
.pagination .nav-links {
display: flex;
gap: 12px;
align-items: center;
}
.pagination a,
.pagination .current {
padding: 14px 24px;
background: #ffffff;
border: 2px solid #e8e8e8;
border-radius: 10px;
text-decoration: none;
color: #333;
font-weight: 600;
transition: all 0.3s ease;
}
.pagination a:hover {
background: #2c5282;
color: #ffffff;
border-color: #2c5282;
transform: translateY(-2px);
}
.pagination .current {
background: #2c5282;
color: #ffffff;
border-color: #2c5282;
} .no-posts {
text-align: center;
padding: 100px 20px;
}
.no-posts svg {
color: #bbb;
margin-bottom: 30px;
}
.no-posts h2 {
font-size: 2rem;
font-weight: 700;
color: #333;
margin: 0 0 16px 0;
}
.no-posts p {
font-size: 1.125rem;
color: #666;
} @media (max-width: 1024px) {
.blog-posts-grid {
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 24px;
}
.archive-title {
font-size: 2rem;
}
.archive-subtitle {
font-size: 1rem;
}
}
@media (max-width: 768px) {
.blog-archive-hero {
padding: 50px 0 30px 0;
}
.blog-posts-section {
padding: 40px 0;
}
.blog-posts-grid {
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
gap: 20px;
}
.archive-title {
font-size: 1.75rem;
}
.archive-subtitle {
font-size: 0.9375rem;
}
.blog-post-card-image {
height: 200px;
}
}
@media (max-width: 600px) {
.blog-archive-hero {
padding: 40px 0 25px 0;
}
.blog-posts-section {
padding: 35px 0;
}
.archive-title {
font-size: 1.5rem;
}
.archive-subtitle {
font-size: 0.875rem;
}
.blog-posts-grid {
grid-template-columns: 1fr;
gap: 24px;
}
.blog-post-card-content {
padding: 20px;
}
.blog-post-card-title {
font-size: 1.125rem;
}
}
@media (max-width: 400px) {
.archive-title {
font-size: 1.375rem;
}
.blog-post-card-image {
height: 180px;
}
}.leistungen-page-main {
background-color: #ffffff;
} .leistungen-page-main .page-container {
padding: 80px 0;
}
.leistungen-page-main .page-article {
max-width: 100%;
margin: 0 auto;
}
.leistungen-page-main .page-content {
font-size: 1.05rem;
line-height: 1.8;
color: #666;
}
.leistungen-page-main .page-content h2 {
font-size: 2rem;
font-weight: 600;
color: #333;
margin-top: 40px;
margin-bottom: 20px;
}
.leistungen-page-main .page-content h3 {
font-size: 1.5rem;
font-weight: 600;
color: #333;
margin-top: 32px;
margin-bottom: 16px;
}
.leistungen-page-main .page-content p {
margin-bottom: 20px;
}
.leistungen-page-main .page-content ul,
.leistungen-page-main .page-content ol {
margin-bottom: 20px;
padding-left: 30px;
}
.leistungen-page-main .page-content li {
margin-bottom: 10px;
}  .about-cta-section {
padding: 120px 0;
background: linear-gradient(135deg, #2c5282 0%, #1a3a5c 100%);
position: relative;
overflow: hidden;
}
.about-cta-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.03)"/></svg>');
background-size: 100px 100px;
opacity: 0.5;
}
.about-cta-content {
position: relative;
z-index: 1;
text-align: center;
max-width: 800px;
margin: 0 auto;
color: #ffffff;
}
.cta-title-large {
font-size: 3rem;
font-weight: 700;
margin-bottom: 20px;
color: #ffffff;
}
.cta-text-large {
font-size: 1.25rem;
margin-bottom: 40px;
color: rgba(255, 255, 255, 0.9);
}
.cta-button-group {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}
.btn-cta-primary {
padding: 18px 48px;
background: linear-gradient(135deg, #f9a825 0%, #f57c00 100%);
color: #ffffff;
font-size: 1.125rem;
font-weight: 600;
border-radius: 50px;
text-decoration: none;
transition: all 0.3s ease;
box-shadow: 0 8px 24px rgba(249, 168, 37, 0.4);
display: inline-block;
}
.btn-cta-primary:hover {
transform: translateY(-3px);
box-shadow: 0 12px 36px rgba(249, 168, 37, 0.5);
}
.btn-cta-secondary {
padding: 18px 48px;
background: transparent;
color: #ffffff;
font-size: 1.125rem;
font-weight: 600;
border: 2px solid rgba(255, 255, 255, 0.5);
border-radius: 50px;
text-decoration: none;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
gap: 12px;
}
.btn-cta-secondary:hover {
background: rgba(255, 255, 255, 0.1);
border-color: #ffffff;
transform: translateY(-3px);
} @media (max-width: 768px) {
.leistungen-page-main .page-container {
padding: 50px 0;
}
.leistungen-page-main .page-content h2 {
font-size: 1.75rem;
}
.leistungen-page-main .page-content h3 {
font-size: 1.35rem;
} .about-cta-section {
padding: 80px 0;
}
.cta-title-large {
font-size: 2rem;
}
.cta-text-large {
font-size: 1.125rem;
}
.cta-button-group {
flex-direction: column;
width: 100%;
}
.btn-cta-primary,
.btn-cta-secondary {
width: 100%;
justify-content: center;
}
}
@media (max-width: 480px) {
.cta-title-large {
font-size: 1.75rem;
}
.btn-cta-primary,
.btn-cta-secondary {
padding: 16px 36px;
font-size: 1rem;
}
}.about-hero-section {
position: relative;
width: 100%;
height: 300px;
overflow: hidden;
background-color: #20620c;
margin-top: -100px; padding-top: 100px;
}
.about-hero-slider {
width: 100%;
height: 100%;
}
.about-hero-slide {
position: relative;
width: 100%;
height: 100%;
display: flex;
align-items: center;
}
.about-hero-image-wrapper {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow: hidden;
}
.about-hero-bg-image {
width: 100%;
height: 100%;
object-fit: cover;
animation: slowZoom 15s ease-in-out infinite alternate;
}
@keyframes slowZoom {
0% { transform: scale(1); }
100% { transform: scale(1.1); }
}
.about-hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(32, 98, 12, 0.6) 0%, rgba(32, 98, 12, 0.7) 100%);
z-index: 1;
}
.about-hero-leaf {
position: absolute;
z-index: 2;
opacity: 0.4;
pointer-events: none;
}
.about-hero-leaf-left {
left: 0;
bottom: 0;
height: 400px;
width: auto;
}
.about-hero-leaf-right {
right: 0;
bottom: 0;
height: 400px;
width: auto;
}
.about-hero-content {
position: relative;
z-index: 3;
color: #ffffff;
text-align: center;
}
.about-hero-title {
font-size: 3rem;
font-weight: 700;
margin-bottom: 12px;
color: #ffffff;
text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.about-hero-subtitle {
font-size: 1.25rem;
color: rgba(255, 255, 255, 0.95);
text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}
.about-hero-pagination {
bottom: 20px !important;
}
.about-hero-pagination .swiper-pagination-bullet {
width: 10px;
height: 10px;
background-color: rgba(255, 255, 255, 0.5);
opacity: 1;
}
.about-hero-pagination .swiper-pagination-bullet-active {
background-color: #ffffff;
width: 30px;
border-radius: 5px;
}  .company-story-section {
padding: 100px 0;
background: linear-gradient(135deg, #7cb342 0%, #1e600a 100%);
}
.company-story-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
}
.company-story-content {
color: #ffffff;
}
.story-badge {
display: inline-block;
padding: 8px 20px;
background: rgba(255, 255, 255, 0.2);
border-radius: 30px;
font-size: 0.875rem;
font-weight: 600;
letter-spacing: 1px;
margin-bottom: 20px;
backdrop-filter: blur(10px);
}
.story-title {
font-size: 2.75rem;
font-weight: 700;
line-height: 1.2;
margin-bottom: 30px;
color: #ffffff;
}
.story-text {
font-size: 1.125rem;
line-height: 1.8;
margin-bottom: 20px;
color: rgba(255, 255, 255, 0.95);
}
.story-image-wrapper {
position: relative;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.story-image {
width: 100%;
height: 500px;
object-fit: cover;
transition: transform 0.6s ease;
}
.company-story-section:hover .story-image {
transform: scale(1.05);
} .video-section {
padding: 100px 0;
background: #f8f9fa;
}
.video-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
}
.section-badge {
display: inline-block;
padding: 8px 20px;
background: rgba(74, 143, 42, 0.15);
color: #2d5a1a;
border-radius: 30px;
font-size: 0.875rem;
font-weight: 600;
letter-spacing: 1px;
margin-bottom: 20px;
}
.video-section-title {
font-size: 2.5rem;
font-weight: 700;
line-height: 1.2;
color: #1a1a1a;
margin-bottom: 24px;
}
.video-section-text {
font-size: 1.0625rem;
line-height: 1.7;
color: #444;
margin-bottom: 32px;
}
.video-features {
display: flex;
flex-direction: column;
gap: 16px;
}
.video-feature-item {
display: flex;
align-items: center;
gap: 12px;
font-size: 1rem;
color: #1a1a1a;
}
.feature-icon {
width: 24px;
height: 24px;
background: #4a8f2a;
color: #ffffff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
flex-shrink: 0;
}
.video-wrapper {
position: relative;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.video-embed-container {
position: relative;
padding-bottom: 56.25%;
height: 0;
overflow: hidden;
}
.video-thumbnail {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
.video-play-btn {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border: none;
background: transparent;
cursor: pointer;
transition: all 0.3s ease;
z-index: 10;
}
.video-play-btn:hover {
transform: translate(-50%, -50%) scale(1.1);
}
.video-embed-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
} .about-stats-section {
position: relative;
padding: 100px 0;
background: linear-gradient(135deg, #2c5282 0%, #1a3a5c 100%);
overflow: hidden;
}
.stats-gradient-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.03)"/></svg>');
background-size: 100px 100px;
opacity: 0.5;
}
.stats-title {
font-size: 2.75rem;
font-weight: 700;
text-align: center;
color: #ffffff;
margin-bottom: 60px;
position: relative;
z-index: 1;
}
.about-stats-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 40px;
position: relative;
z-index: 1;
}
.about-stat-item {
text-align: center;
padding: 40px 20px;
background: rgba(255, 255, 255, 0.1);
border-radius: 16px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
transition: all 0.4s ease;
}
.about-stat-item:hover {
transform: translateY(-8px);
background: rgba(255, 255, 255, 0.15);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.stat-icon {
margin-bottom: 20px;
color: #f9a825;
}
.about-stat-number {
font-size: 4rem;
font-weight: 700;
color: #ffffff;
margin-bottom: 12px;
line-height: 1;
}
.about-stat-label {
font-size: 1.125rem;
color: rgba(255, 255, 255, 0.9);
font-weight: 500;
} .certificates-section {
padding: 100px 0;
background: #1a1a1a;
}
.section-header-centered {
text-align: center;
margin-bottom: 60px;
}
.section-badge-light {
display: inline-block;
padding: 8px 20px;
background: rgba(124, 179, 66, 0.2);
color: #7cb342;
border-radius: 30px;
font-size: 0.875rem;
font-weight: 600;
letter-spacing: 1px;
margin-bottom: 20px;
}
.section-title-light {
font-size: 2.75rem;
font-weight: 700;
color: #ffffff;
margin-bottom: 16px;
}
.section-subtitle-light {
font-size: 1.125rem;
color: rgba(255, 255, 255, 0.7);
}
.certificates-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 30px;
}
.certificate-card {
padding: 40px 30px;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 16px;
text-align: center;
transition: all 0.4s ease;
}
.certificate-card:hover {
background: rgba(255, 255, 255, 0.08);
transform: translateY(-8px);
border-color: #7cb342;
}
.certificate-icon {
margin-bottom: 24px;
}
.certificate-icon img {
width: 80px;
height: 80px;
object-fit: contain;
}
.certificate-title {
font-size: 1.25rem;
font-weight: 600;
color: #ffffff;
margin-bottom: 12px;
}
.certificate-text {
font-size: 0.9375rem;
color: rgba(255, 255, 255, 0.6);
} .management-section {
padding: 100px 0;
background: #ffffff;
}
.section-title-dark {
font-size: 2.75rem;
font-weight: 700;
color: #1a1a1a;
margin-bottom: 16px;
}
.section-subtitle-dark {
font-size: 1.125rem;
color: #444;
}
.management-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 50px;
margin-top: 60px;
}
.manager-card {
background: #ffffff;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
transition: all 0.4s ease;
}
.manager-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.manager-image-wrapper {
position: relative;
height: 400px;
overflow: hidden;
}
.manager-image {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s ease;
}
.manager-card:hover .manager-image {
transform: scale(1.05);
}
.manager-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
opacity: 0;
transition: opacity 0.4s ease;
display: flex;
align-items: flex-end;
justify-content: center;
padding: 30px;
}
.manager-card:hover .manager-overlay {
opacity: 1;
}
.manager-social {
display: flex;
gap: 20px;
}
.manager-social a {
width: 44px;
height: 44px;
background: rgba(255, 255, 255, 0.2);
backdrop-filter: blur(10px);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #ffffff;
transition: all 0.3s ease;
}
.manager-social a:hover {
background: #7cb342;
transform: translateY(-3px);
}
.manager-info {
padding: 32px;
}
.manager-name {
font-size: 1.75rem;
font-weight: 700;
color: #1a1a1a;
margin-bottom: 8px;
}
.manager-position {
font-size: 1rem;
color: #4a8f2a;
font-weight: 600;
margin-bottom: 16px;
}
.manager-bio {
font-size: 0.9375rem;
line-height: 1.7;
color: #444;
} .team-grid-section {
padding: 80px 0 100px;
background: #f8f9fa;
}
.team-grid-title {
font-size: 2rem;
font-weight: 700;
text-align: center;
color: #1a1a1a;
margin-bottom: 50px;
}
.team-members-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 30px;
}
.team-member-card {
background: #ffffff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
}
.team-member-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.team-member-image {
width: 100%;
aspect-ratio: 1;
overflow: hidden;
}
.team-member-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.team-member-card:hover .team-member-image img {
transform: scale(1.1);
}
.team-member-details {
padding: 24px 20px;
text-align: center;
}
.team-member-name {
font-size: 1.125rem;
font-weight: 600;
color: #1a1a1a;
margin-bottom: 6px;
}
.team-member-role {
font-size: 0.9375rem;
color: #4a8f2a;
}  .about-cta-section {
padding: 120px 0;
background: linear-gradient(135deg, #2c5282 0%, #1a3a5c 100%);
position: relative;
overflow: hidden;
}
.about-cta-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.03)"/></svg>');
background-size: 100px 100px;
opacity: 0.5;
}
.about-cta-content {
position: relative;
z-index: 1;
text-align: center;
max-width: 800px;
margin: 0 auto;
color: #ffffff;
}
.cta-title-large {
font-size: 3rem;
font-weight: 700;
margin-bottom: 20px;
color: #ffffff;
}
.cta-text-large {
font-size: 1.25rem;
margin-bottom: 40px;
color: rgba(255, 255, 255, 0.9);
}
.cta-button-group {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}
.btn-cta-primary {
padding: 18px 48px;
background: linear-gradient(135deg, #f9a825 0%, #f57c00 100%);
color: #ffffff;
font-size: 1.125rem;
font-weight: 600;
border-radius: 50px;
text-decoration: none;
transition: all 0.3s ease;
box-shadow: 0 8px 24px rgba(249, 168, 37, 0.4);
display: inline-block;
}
.btn-cta-primary:hover {
transform: translateY(-3px);
box-shadow: 0 12px 36px rgba(249, 168, 37, 0.5);
}
.btn-cta-secondary {
padding: 18px 48px;
background: transparent;
color: #ffffff;
font-size: 1.125rem;
font-weight: 600;
border: 2px solid rgba(255, 255, 255, 0.5);
border-radius: 50px;
text-decoration: none;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
gap: 12px;
}
.btn-cta-secondary:hover {
background: rgba(255, 255, 255, 0.1);
border-color: #ffffff;
transform: translateY(-3px);
} .fade-in-element {
opacity: 0;
transform: translateY(30px);
transition: all 0.8s ease;
}
.fade-in-visible {
opacity: 1;
transform: translateY(0);
} .manager-card:nth-child(1) { transition-delay: 0s; }
.manager-card:nth-child(2) { transition-delay: 0.2s; }
.certificate-card:nth-child(1) { transition-delay: 0s; }
.certificate-card:nth-child(2) { transition-delay: 0.1s; }
.certificate-card:nth-child(3) { transition-delay: 0.2s; }
.certificate-card:nth-child(4) { transition-delay: 0.3s; }
.team-member-card:nth-child(1) { transition-delay: 0s; }
.team-member-card:nth-child(2) { transition-delay: 0.1s; }
.team-member-card:nth-child(3) { transition-delay: 0.2s; }
.team-member-card:nth-child(4) { transition-delay: 0.3s; }
.team-member-card:nth-child(5) { transition-delay: 0s; }
.team-member-card:nth-child(6) { transition-delay: 0.1s; }
.team-member-card:nth-child(7) { transition-delay: 0.2s; }
.team-member-card:nth-child(8) { transition-delay: 0.3s; } @media (max-width: 1024px) {
.about-hero-title { font-size: 2.5rem; }
.company-story-grid { gap: 50px; }
.story-title { font-size: 2.25rem; }
.video-grid { gap: 50px; }
.video-section-title { font-size: 2rem; }
.about-stats-grid { grid-template-columns: repeat(2, 1fr); }
.certificates-grid { grid-template-columns: repeat(2, 1fr); }
.team-members-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
.about-hero-section { height: 250px; margin-top: -80px; padding-top: 80px; }
.about-hero-title { font-size: 2rem; }
.about-hero-subtitle { font-size: 1rem; }
.company-story-section { padding: 80px 0 60px; }
.company-story-grid { grid-template-columns: 1fr; gap: 40px; }
.story-image-wrapper { height: 350px; }
.story-image { height: 100%; }
.story-title { font-size: 1.875rem; }
.story-text { font-size: 1rem; }
.video-grid { grid-template-columns: 1fr; gap: 40px; }
.video-section-title { font-size: 1.75rem; }
.about-stats-grid { grid-template-columns: 1fr; gap: 24px; }
.about-stat-number { font-size: 3rem; }
.management-grid { grid-template-columns: 1fr; gap: 40px; }
.certificates-grid { grid-template-columns: 1fr; }
.team-members-grid { grid-template-columns: repeat(2, 1fr); }
.cta-title-large { font-size: 2rem; }
.cta-button-group { flex-direction: column; width: 100%; }
.btn-cta-primary, .btn-cta-secondary { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
.about-hero-title { font-size: 1.75rem; }
.story-title { font-size: 1.5rem; }
.team-members-grid { grid-template-columns: repeat(2, 1fr); }
}  .contact-info-section {
padding: 100px 0;
background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
position: relative;
}
.contact-info-header {
text-align: center;
max-width: 700px;
margin: 0 auto 60px;
}
.contact-info-title {
font-size: 2.75rem;
font-weight: 700;
color: #1a1a1a;
margin-bottom: 16px;
}
.contact-info-subtitle {
font-size: 1.125rem;
color: #444;
line-height: 1.7;
}
.contact-info-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px;
margin-bottom: 50px;
}
.contact-info-card {
background: #ffffff;
border-radius: 16px;
padding: 40px 30px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
transition: all 0.4s ease;
text-align: center;
border: 2px solid transparent;
}
.contact-info-card:hover {
transform: translateY(-8px);
box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
border-color: #7cb342;
}
.contact-card-icon {
width: 80px;
height: 80px;
background: linear-gradient(135deg, #7cb342 0%, #558b2f 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 24px;
color: #ffffff;
box-shadow: 0 8px 20px rgba(124, 179, 66, 0.3);
}
.contact-card-title {
font-size: 1.5rem;
font-weight: 700;
color: #1a1a1a;
margin-bottom: 24px;
}
.contact-card-details {
display: flex;
flex-direction: column;
gap: 16px;
}
.contact-detail-item {
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
font-size: 1rem;
color: #444;
}
.contact-detail-item svg {
flex-shrink: 0;
color: #7cb342;
}
.contact-link {
color: #2c5282;
text-decoration: none;
font-weight: 600;
transition: color 0.3s ease;
}
.contact-link:hover {
color: #7cb342;
}
.contact-text {
color: #666;
font-weight: 500;
}
.contact-email-highlight {
max-width: 500px;
margin: 0 auto;
background: linear-gradient(135deg, #f9a825 0%, #f57c00 100%);
padding: 32px 48px;
border-radius: 60px;
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
}
.contact-email-link-2 {
color: #fff !important;
font-size: 30px !important;
font-weight: bolder !important;
text-transform: uppercase !important;
} @media (max-width: 600px) {
.contact-info-grid {
grid-template-columns: 1fr !important;
gap: 20px !important;
}
}