/* License Info Page Styles */
.license-page {
max-width: 1000px;
margin: 0 auto;
padding: 0 20px;
}
/* Hero Section */
.license-hero {
text-align: center;
margin-bottom: 50px;
}
.license-hero h1 {
font-family: 'Playfair Display', serif;
font-size: 2.5rem;
font-weight: 600;
color: #fff;
margin-bottom: 12px;
}
.license-hero .subtitle {
font-size: 1.1rem;
color: rgba(255,255,255,0.7);
max-width: 600px;
margin: 0 auto;
}
.last-updated {
font-size: 0.85rem;
color: rgba(255,255,255,0.4);
margin-top: 16px;
}
/* Section Styling */
.section-title {
font-family: 'Playfair Display', serif;
font-size: 1.5rem;
color: #fff;
margin-bottom: 24px;
padding-bottom: 12px;
border-bottom: 1px solid rgba(255,255,255,0.1);
}
/* License Comparison */
.license-comparison {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 24px;
margin-bottom: 60px;
}
@media (max-width: 768px) {
.license-comparison {
grid-template-columns: 1fr;
}
}
.license-type-card {
background: rgba(255,255,255,0.03);
border: 1px solid rgba(255,255,255,0.08);
border-radius: 16px;
padding: 32px;
transition: all 0.3s ease;
}
.license-type-card:hover {
background: rgba(255,255,255,0.05);
border-color: rgba(255,255,255,0.12);
}
.license-type-card.standard {
border-color: rgba(34, 197, 94, 0.3);
}
.license-type-card.extended {
border-color: rgba(168, 85, 247, 0.3);
}
.license-badge {
display: inline-block;
padding: 6px 14px;
border-radius: 20px;
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 16px;
}
.license-type-card.standard .license-badge {
background: rgba(34, 197, 94, 0.15);
color: #22c55e;
}
.license-type-card.extended .license-badge {
background: rgba(168, 85, 247, 0.15);
color: #a855f7;
}
.license-type-title {
font-size: 1.5rem;
font-weight: 600;
color: #fff;
margin-bottom: 8px;
}
.license-type-price {
font-size: 1rem;
color: rgba(255,255,255,0.5);
margin-bottom: 20px;
}
.license-type-desc {
font-size: 0.95rem;
color: rgba(255,255,255,0.7);
line-height: 1.6;
margin-bottom: 24px;
}
.license-features {
list-style: none;
padding: 0;
margin: 0;
}
.license-features li {
display: flex;
align-items: flex-start;
gap: 12px;
padding: 10px 0;
font-size: 0.9rem;
color: rgba(255,255,255,0.75);
border-bottom: 1px solid rgba(255,255,255,0.04);
}
.license-features li:last-child {
border-bottom: none;
}
.license-features li svg {
flex-shrink: 0;
width: 18px;
height: 18px;
margin-top: 2px;
}
.license-features li svg.check {
color: #22c55e;
}
.license-features li svg.x {
color: #ef4444;
}
/* Usage Table */
.usage-section {
margin-bottom: 60px;
}
.usage-table {
width: 100%;
border-collapse: separate;
border-spacing: 0;
background: rgba(255,255,255,0.02);
border-radius: 16px;
overflow: hidden;
border: 1px solid rgba(255,255,255,0.06);
}
.usage-table thead {
background: rgba(255,255,255,0.05);
}
.usage-table th {
padding: 18px 20px;
font-size: 0.9rem;
font-weight: 600;
color: rgba(255,255,255,0.9);
text-align: left;
border-bottom: 1px solid rgba(255,255,255,0.08);
}
.usage-table th:nth-child(2),
.usage-table th:nth-child(3),
.usage-table td:nth-child(2),
.usage-table td:nth-child(3) {
text-align: center;
}
.usage-table td {
padding: 16px 20px;
font-size: 0.95rem;
color: rgba(255,255,255,0.7);
border-bottom: 1px solid rgba(255,255,255,0.04);
}
.usage-table tbody tr:last-child td {
border-bottom: none;
}
.usage-table tbody tr:hover {
background: rgba(255,255,255,0.03);
}
.check-green {
color: #22c55e;
font-size: 1.1rem;
}
.x-red {
color: #ef4444;
font-size: 1.1rem;
}
/* Restrictions Section */
.restrictions-section {
margin-bottom: 60px;
}
.restrictions-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 24px;
}
@media (max-width: 768px) {
.restrictions-grid {
grid-template-columns: 1fr;
}
}
.restriction-card {
background: rgba(239, 68, 68, 0.05);
border: 1px solid rgba(239, 68, 68, 0.15);
border-radius: 12px;
padding: 24px;
}
.restriction-card h4 {
display: flex;
align-items: center;
gap: 10px;
font-size: 1rem;
font-weight: 600;
color: #ef4444;
margin-bottom: 12px;
}
.restriction-card h4 svg {
width: 20px;
height: 20px;
}
.restriction-card p {
font-size: 0.9rem;
color: rgba(255,255,255,0.6);
line-height: 1.6;
}
/* FAQ Section */
.faq-section {
margin-bottom: 60px;
}
.faq-list {
display: flex;
flex-direction: column;
gap: 16px;
}
.faq-item {
background: rgba(255,255,255,0.02);
border: 1px solid rgba(255,255,255,0.06);
border-radius: 12px;
padding: 24px;
}
.faq-question {
font-size: 1rem;
font-weight: 600;
color: #fff;
margin-bottom: 12px;
display: flex;
align-items: flex-start;
gap: 12px;
}
.faq-question svg {
flex-shrink: 0;
width: 20px;
height: 20px;
color: #a78bfa;
margin-top: 2px;
}
.faq-answer {
font-size: 0.9rem;
color: rgba(255,255,255,0.6);
line-height: 1.6;
padding-left: 32px;
}
/* Contact Section */
.contact-section {
text-align: center;
padding: 48px;
background: rgba(255,255,255,0.02);
border: 1px solid rgba(255,255,255,0.06);
border-radius: 16px;
}
.contact-section h2 {
font-family: 'Playfair Display', serif;
font-size: 1.5rem;
color: #fff;
margin-bottom: 12px;
}
.contact-section p {
color: rgba(255,255,255,0.6);
margin-bottom: 24px;
}
.contact-button {
display: inline-block;
padding: 14px 32px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: #fff;
border-radius: 10px;
font-size: 0.95rem;
font-weight: 600;
text-decoration: none;
transition: all 0.3s ease;
}
.contact-button:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(102,126,234,0.35);
}
License Information
Understanding your rights and usage terms for images purchased from Fotografiescu.
Last updated: January 2, 2026
Included
Standard License
Included with every purchase
The Standard License covers most commercial and personal uses. It’s designed for businesses, creators, and individuals who need professional imagery for their projects.
-
Use in websites, apps, and software
-
Social media posts and advertising
-
Print materials (brochures, flyers, posters)
-
Editorial use in articles and blogs
-
Presentations and internal documents
-
Up to 500,000 copies total
-
Products for resale
-
Templates or digital products for sale
Premium
Extended License
+$50 per image (subscription: +$10-15)
The Extended License is required when creating products for resale or unlimited distribution. It provides the maximum flexibility for commercial use.
-
Everything in Standard License
-
Products for resale (prints, posters, canvas)
-
Merchandise (t-shirts, mugs, phone cases)
-
Templates and digital products for sale
-
Software and apps for sale
-
Unlimited copies and distribution
-
Perpetual, worldwide rights
-
No expiration date
Usage Rights Comparison
| Use Case |
Standard |
Extended |
| Websites and landing pages |
✓ |
✓ |
| Social media posts |
✓ |
✓ |
| Digital advertising (banners, PPC) |
✓ |
✓ |
| Print advertising (magazines, billboards) |
✓ |
✓ |
| Packaging design |
✓ |
✓ |
| Books and e-books |
✓ |
✓ |
| Editorial use in publications |
✓ |
✓ |
| Presentations and proposals |
✓ |
✓ |
| Art prints for sale |
✗ |
✓ |
| Merchandise (t-shirts, mugs) |
✗ |
✓ |
| Website templates for sale |
✗ |
✓ |
| Apps and software for sale |
✗ |
✓ |
License Restrictions
The following uses are prohibited under all licenses:
No Redistribution
You may not share, redistribute, or sublicense the original image files to others. Each user must purchase their own license.
No Standalone Sale
Images cannot be sold as-is without significant modification or as the primary product value (e.g., wallpapers, stock photos).
No Defamatory Use
Images may not be used in a way that is defamatory, pornographic, or otherwise unlawful, or that could be seen as an endorsement of illegal activities.
No Trademark Registration
You may not register any image as a trademark, service mark, or claim copyright ownership over the original image.
Frequently Asked Questions
Do I need to credit Fotografiescu?
Attribution is not required but always appreciated. If you’d like to credit us, please use: “Photo by Fotografiescu” or link to fotografiescu.com.
Can I modify the images?
Yes! You can crop, resize, adjust colors, apply filters, and make other modifications to suit your project needs. However, you cannot claim the modified image as your own original work.
What about model releases?
All images featuring recognizable people have appropriate model releases for commercial use. For sensitive uses (health, political, adult themes), please contact us to verify specific release terms.
Can my client use the image too?
If you’re creating work for a client (e.g., a website), the license transfers to the end client for that specific project. However, you cannot resell or transfer the license for other projects.
How long does my license last?
Both Standard and Extended licenses are perpetual — they never expire. Once purchased, you can use the image forever within the license terms.